react-redux-rails-todo/db/seeds.rb
2018-10-12 02:08:36 +11:00

10 lines
519 B
Ruby

# This file should contain all the record creation needed to seed the database with its default values.
# The data can then be loaded with the rails db:seed command (or created alongside the database with db:setup).
#
# Examples:
#
# movies = Movie.create([{ name: 'Star Wars' }, { name: 'Lord of the Rings' }])
# Character.create(name: 'Luke', movie: movies.first)
Todo.create(title: "Buy food: milk, bread, fruits", done: false)
Todo.create(title: "Reserve tickets for the Imagine Dragons convert", done: false)