mirror of
https://github.com/internetee/registry.git
synced 2025-06-04 11:47:30 +02:00
6 lines
No EOL
157 B
Ruby
6 lines
No EOL
157 B
Ruby
class RemoveCsrCrtFromUsers < ActiveRecord::Migration[6.0]
|
|
def change
|
|
remove_column :users, :csr, :text
|
|
remove_column :users, :crt, :text
|
|
end
|
|
end |