spec/dummy/db/schema.rb in token_field-0.0.1 vs spec/dummy/db/schema.rb in token_field-0.0.2

- old
+ new

@@ -9,16 +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 => 20121012235509) do +ActiveRecord::Schema.define(:version => 20121013214019) do create_table "categories", :force => true do |t| t.string "name" t.integer "parent_id" t.datetime "created_at", :null => false t.datetime "updated_at", :null => false + end + + create_table "items", :force => true do |t| + t.string "name" + t.integer "category_id" + t.datetime "created_at", :null => false + t.datetime "updated_at", :null => false end create_table "product_has_categories", :force => true do |t| t.integer "product_id" t.integer "category_id"