asciinema.org/db/migrate/20150510162214_drop_supporter_from_users.rb
2015-05-10 16:40:39 +00:00

6 lines
115 B
Ruby

class DropSupporterFromUsers < ActiveRecord::Migration
def change
remove_column :users, :supporter
end
end