spec/dummy/rails-4.0.2/db/schema.rb in notify_user-0.0.1 vs spec/dummy/rails-4.0.2/db/schema.rb in notify_user-0.0.5

- old
+ new

@@ -9,17 +9,38 @@ # 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: 20140105070448) do +ActiveRecord::Schema.define(version: 20140428015531191191953000) do + # These are extensions that must be enabled in order to support this database + enable_extension "plpgsql" + create_table "notify_user_notifications", force: true do |t| t.string "type" t.integer "target_id" t.string "target_type" - t.text "params" + t.json "params" t.string "state" + t.datetime "created_at" + t.datetime "updated_at" + end + + create_table "notify_user_unsubscribes", force: true do |t| + t.string "type" + t.integer "target_id" + t.string "target_type" + t.datetime "created_at" + t.datetime "updated_at" + end + + create_table "notify_user_user_hashes", force: true do |t| + t.string "type" + t.integer "target_id" + t.string "target_type" + t.string "token" + t.boolean "active", default: true t.datetime "created_at" t.datetime "updated_at" end create_table "users", force: true do |t|