summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorAlex Legler <alex@a3li.li>2011-08-14 14:35:09 +0200
committerAlex Legler <alex@a3li.li>2011-08-14 14:35:09 +0200
commit2504a90a05f83eaede3bf2d888fce48ae715f920 (patch)
treee5b8b96c4b305b78f5e55ea74882ea1a35d4ef5c /db
parentUpdate to rails 2.3.12 and use Bundler (diff)
downloadglsamaker-2504a90a05f83eaede3bf2d888fce48ae715f920.tar.gz
glsamaker-2504a90a05f83eaede3bf2d888fce48ae715f920.tar.bz2
glsamaker-2504a90a05f83eaede3bf2d888fce48ae715f920.zip
First set of rails3 updates
.rails2 backups are still there, to be merged and removed on completion.
Diffstat (limited to 'db')
-rw-r--r--db/schema.rb13
-rw-r--r--db/seeds.rb7
2 files changed, 14 insertions, 6 deletions
diff --git a/db/schema.rb b/db/schema.rb
index 0815938..7e10a34 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -1,10 +1,11 @@
-# This file is auto-generated from the current state of the database. Instead of editing this file,
-# please use the migrations feature of Active Record to incrementally modify your database, and
-# then regenerate this schema definition.
+# This file is auto-generated from the current state of the database. Instead
+# of editing this file, please use the migrations feature of Active Record to
+# incrementally modify your database, and then regenerate this schema definition.
#
-# Note that this schema.rb definition is the authoritative source for your database schema. If you need
-# to create the application database on another system, you should be using db:schema:load, not running
-# all the migrations from scratch. The latter is a flawed and unsustainable approach (the more migrations
+# Note that this schema.rb definition is the authoritative source for your
+# database schema. If you need to create the application database on another
+# system, you should be using db:schema:load, not running all the migrations
+# from scratch. The latter is a flawed and unsustainable approach (the more migrations
# you'll amass, the slower it'll run and the greater likelihood for issues).
#
# It's strongly recommended to check this file into your version control system.
diff --git a/db/seeds.rb b/db/seeds.rb
new file mode 100644
index 0000000..d34dfa0
--- /dev/null
+++ b/db/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' }])
+# Mayor.create(:name => 'Emanuel', :city => cities.first)