test/dummy/db/schema.rb in proclaim-0.3.1 vs test/dummy/db/schema.rb in proclaim-0.4.0

- 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: 20141222224905) do +ActiveRecord::Schema.define(version: 20150123115226) do create_table "proclaim_comment_hierarchies", id: false, force: :cascade do |t| t.integer "ancestor_id", null: false t.integer "descendant_id", null: false t.integer "generations", null: false @@ -56,11 +56,12 @@ add_index "proclaim_posts", ["state"], name: "index_proclaim_posts_on_state" create_table "proclaim_subscriptions", force: :cascade do |t| t.integer "post_id" t.string "email" - t.datetime "created_at", null: false - t.datetime "updated_at", null: false + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.string "name", default: "", null: false end add_index "proclaim_subscriptions", ["post_id", "email"], name: "index_proclaim_subscriptions_on_post_id_and_email", unique: true add_index "proclaim_subscriptions", ["post_id"], name: "index_proclaim_subscriptions_on_post_id"