10 lines
228 B
Ruby
10 lines
228 B
Ruby
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
|
|
|
|
namespace :zammad do
|
|
|
|
namespace :db do
|
|
|
|
desc 'Creates and migrates the DB without seeding'
|
|
task unseeded: %i[db:create db:migrate]
|
|
end
|
|
end
|