spec/app/db/schema.rb in extend_at-0.2.0 vs spec/app/db/schema.rb in extend_at-0.2.1

- old
+ new

@@ -9,11 +9,11 @@ # 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 => 20120110153027) do +ActiveRecord::Schema.define(:version => 20120118200029) do create_table "articles", :force => true do |t| t.string "title" t.text "body" t.text "extra" @@ -100,9 +100,21 @@ end create_table "extend_ats", :force => true do |t| t.integer "model_id" t.string "model_type" + end + + create_table "toolboxes", :force => true do |t| + t.string "name" + t.datetime "created_at" + t.datetime "updated_at" + end + + create_table "tools", :force => true do |t| + t.string "name" + t.datetime "created_at" + t.datetime "updated_at" end create_table "users", :force => true do |t| t.string "name" t.text "private_info"