wikicr/tasks/db/seed/required_data.cr
Arthur Poulet e9bb1cbdc0
Some checks failed
continuous-integration/drone/push Build is failing
spike: try to install & migrate to lucky
2021-10-15 18:44:23 +02:00

31 lines
1017 B
Crystal

require "../../../spec/support/factories/**"
# Add seeds here that are *required* for your app to work.
# For example, you might need at least one admin user or you might need at least
# one category for your blog posts for the app to work.
#
# Use `Db::Seed::SampleData` if your only want to add sample data helpful for
# development.
class Db::Seed::RequiredData < LuckyTask::Task
summary "Add database records required for the app to work"
def call
# Using a Avram::Factory:
#
# Use the defaults, but override just the email
# UserFactory.create &.email("me@example.com")
# Using a SaveOperation:
#
# SaveUser.create!(email: "me@example.com", name: "Jane")
#
# You likely want to be able to run this file more than once. To do that,
# only create the record if it doesn't exist yet:
#
# unless UserQuery.new.email("me@example.com").first?
# SaveUser.create!(email: "me@example.com", name: "Jane")
# end
puts "Done adding required data"
end
end