test/dummy/db/schema.rb in csv_rails-0.4.1 vs test/dummy/db/schema.rb in csv_rails-0.5.0
- old
+ new
@@ -9,10 +9,23 @@
# 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.
-ActiveRecord::Schema.define(:version => 20120323112247) do
+ActiveRecord::Schema.define(:version => 20120328072740) do
+
+ create_table "groups", :force => true do |t|
+ t.string "name"
+ t.datetime "created_at"
+ t.datetime "updated_at"
+ end
+
+ create_table "memberships", :force => true do |t|
+ t.integer "user_id"
+ t.integer "group_id"
+ t.datetime "created_at"
+ t.datetime "updated_at"
+ end
create_table "users", :force => true do |t|
t.string "name"
t.integer "age"
t.string "secret"