6 lines
153 B
Ruby
6 lines
153 B
Ruby
|
class RemoveMessageSignatureEnabled < ActiveRecord::Migration[6.1]
|
||
|
def change
|
||
|
remove_column :users, :message_signature_enabled, :boolean
|
||
|
end
|
||
|
end
|