removes user.letter_sent from the database

This commit is contained in:
kikito
2015-10-20 13:31:52 +02:00
parent 20aee99bbf
commit faf29e81b7
2 changed files with 6 additions and 2 deletions

View File

@@ -0,0 +1,5 @@
class RemoveLetterSentAtFromUsers < ActiveRecord::Migration
def change
remove_column :users, :letter_sent_at, :datetime
end
end

View File

@@ -11,7 +11,7 @@
# #
# It's strongly recommended that you check this file into your version control system. # It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 20151015135154) do ActiveRecord::Schema.define(version: 20151020112354) do
# These are extensions that must be enabled in order to support this database # These are extensions that must be enabled in order to support this database
enable_extension "plpgsql" enable_extension "plpgsql"
@@ -284,7 +284,6 @@ ActiveRecord::Schema.define(version: 20151015135154) do
t.string "document_number" t.string "document_number"
t.string "document_type" t.string "document_type"
t.datetime "residence_verified_at" t.datetime "residence_verified_at"
t.datetime "letter_sent_at"
t.string "email_verification_token" t.string "email_verification_token"
t.datetime "verified_at" t.datetime "verified_at"
t.string "unconfirmed_phone" t.string "unconfirmed_phone"