test/dummy/db/schema.rb in polyblock-0.1.2 vs test/dummy/db/schema.rb in polyblock-0.1.6

- 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 that you check this file into your version control system. -ActiveRecord::Schema.define(version: 20131201194124) do +ActiveRecord::Schema.define(version: 20131221213025) do create_table "ckeditor_assets", force: true do |t| t.string "data_file_name", null: false t.string "data_content_type" t.integer "data_file_size" @@ -26,9 +26,15 @@ t.datetime "updated_at" end add_index "ckeditor_assets", ["assetable_type", "assetable_id"], name: "idx_ckeditor_assetable" add_index "ckeditor_assets", ["assetable_type", "type", "assetable_id"], name: "idx_ckeditor_assetable_type" + + create_table "parents", force: true do |t| + t.string "name" + t.datetime "created_at" + t.datetime "updated_at" + end create_table "polyblock_blocks", force: true do |t| t.string "name" t.text "content" t.integer "contentable_id"