wikicr/tasks/db/seed/sample_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
1009 B
Crystal

require "../../../spec/support/factories/**"
# Add sample data helpful for development, e.g. (fake users, blog posts, etc.)
#
# Use `Db::Seed::RequiredData` if you need to create data *required* for your
# app to work.
class Db::Seed::SampleData < LuckyTask::Task
summary "Add sample database records helpful for development"
def call
# Using an Avram::Factory:
#
# Use the defaults, but override just the email
# UserFactory.create &.email("me@example.com")
# Using a SaveOperation:
# ```
# SignUpUser.create!(email: "me@example.com", password: "test123", password_confirmation: "test123")
# ```
#
# 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:
# ```
# if UserQuery.new.email("me@example.com").none?
# SignUpUser.create!(email: "me@example.com", password: "test123", password_confirmation: "test123")
# end
# ```
puts "Done adding sample data"
end
end