aboutsummaryrefslogtreecommitdiffstats
path: root/railties/configs
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2009-05-11 19:08:13 +0200
committerDavid Heinemeier Hansson <david@loudthinking.com>2009-05-11 19:08:13 +0200
commit4932f7b38f72104819022abca0c952ba6f9888cb (patch)
treeb8f5d82f7a00d910e6e88648cfe3cda345cd0295 /railties/configs
parent2e7409f035236c719c5b1567c4bb3e65a5e543bc (diff)
downloadrails-4932f7b38f72104819022abca0c952ba6f9888cb.tar.gz
rails-4932f7b38f72104819022abca0c952ba6f9888cb.tar.bz2
rails-4932f7b38f72104819022abca0c952ba6f9888cb.zip
Added db/seeds.rb as a default file for storing seed data for the database. Can be loaded with rake db:seed (or created alongside the db with db:setup). (This is also known as the "Stop Putting Gawd Damn Seed Data In Your Migrations" feature) [DHH]
Diffstat (limited to 'railties/configs')
-rw-r--r--railties/configs/seeds.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/railties/configs/seeds.rb b/railties/configs/seeds.rb
new file mode 100644
index 0000000000..3174d0cb8a
--- /dev/null
+++ b/railties/configs/seeds.rb
@@ -0,0 +1,7 @@
+# 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 rake db:seed (or created alongside the db with db:setup).
+#
+# Examples:
+#
+# cities = City.create([{ :name => 'Chicago' }, { :name => 'Copenhagen' }])
+# Major.create(:name => 'Daley', :city => cities.first)