6 lines
137 B
Ruby
6 lines
137 B
Ruby
|
class RemoveContactPubsubToken < ActiveRecord::Migration[6.1]
|
||
|
def change
|
||
|
remove_column :contacts, :pubsub_token, :string
|
||
|
end
|
||
|
end
|