spec/test_app/db/schema.rb in notifiable-rails-0.8.0 vs spec/test_app/db/schema.rb in notifiable-rails-0.9.0

- old
+ new

@@ -37,17 +37,19 @@ create_table "notifiable_notification_statuses", force: true do |t| t.integer "notification_id" t.integer "device_token_id" t.integer "status" + t.string "uuid" end create_table "notifiable_notifications", force: true do |t| t.text "message" t.text "params" t.integer "app_id" - t.integer "sent_count" - t.integer "gateway_accepted_count" + t.integer "sent_count", default: 0 + t.integer "gateway_accepted_count", default: 0 + t.integer "opened_count", default: 0 t.datetime "created_at" t.datetime "updated_at" end create_table "users", force: true do |t|