spec/test_app/db/schema.rb in mail_manager-3.0.0 vs spec/test_app/db/schema.rb in mail_manager-3.2.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 to check this file into your version control system. -ActiveRecord::Schema.define(:version => 20131221072600) do +ActiveRecord::Schema.define(:version => 20150423143754) do create_table "delayed_jobs", :force => true do |t| t.integer "priority", :default => 0, :null => false t.integer "attempts", :default => 0, :null => false t.text "handler", :null => false @@ -46,13 +46,15 @@ t.string "email_address" t.string "first_name" t.string "last_name" t.integer "upated_by" t.integer "created_by" - 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.datetime "deleted_at" + t.string "login_token" + t.datetime "login_token_created_at" end create_table "mail_manager_mailables", :force => true do |t| t.string "name", :null => false t.text "email_html" @@ -86,11 +88,14 @@ t.integer "mailable_id" t.string "status" t.datetime "status_changed_at" t.datetime "scheduled_at" t.boolean "include_images" - 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.integer "bounces_count", :default => 0 + t.integer "messages_count", :default => 0 + t.datetime "deleted_at" end create_table "mail_manager_messages", :force => true do |t| t.string "type" t.string "test_email_address"