gab-social/db/migrate/20210216022902_remove_publi...

6 lines
155 B
Ruby
Raw Normal View History

class RemovePublicKeyFromAccounts < ActiveRecord::Migration[6.0]
def change
safety_assured { remove_column :accounts, :public_key, :text }
end
end