users: drop email column.

This commit is contained in:
evazion
2020-03-25 02:51:30 -05:00
parent ea8cdadce9
commit 4b1114b4a4
4 changed files with 9 additions and 11 deletions

View File

@@ -0,0 +1,5 @@
class DropEmailsFromUsers < ActiveRecord::Migration[6.0]
def change
remove_column :users, :email, :string
end
end