spec/dummy/db/schema.rb in feeder-0.3.0 vs spec/dummy/db/schema.rb in feeder-0.5.1
- old
+ new
@@ -9,17 +9,20 @@
# 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: 20140317152438) do
+ActiveRecord::Schema.define(version: 20140526110501) do
create_table "feeder_items", force: true do |t|
t.datetime "published_at"
t.datetime "created_at"
t.datetime "updated_at"
t.integer "feedable_id"
t.string "feedable_type"
+ t.boolean "sticky", default: false, null: false
+ t.boolean "blocked", default: false, null: false
+ t.boolean "reported", default: false, null: false
end
add_index "feeder_items", ["feedable_id", "feedable_type"], name: "index_feeder_items_on_feedable_id_and_feedable_type"
create_table "messages", force: true do |t|