Remove unused columns from users table

Fixes #264
This commit is contained in:
Georg Kahest 2019-10-08 12:06:18 +03:00 committed by Artur Beljajev
parent 8dfda3ccda
commit 164e0bcb1b
3 changed files with 8 additions and 10 deletions

View file

@ -0,0 +1,6 @@
class RemoveCsrCrtFromUsers < ActiveRecord::Migration
def change
remove_column :users, :csr, :text
remove_column :users, :crt, :text
end
end