asciinema.org/db/migrate/20150510162214_drop_supporter_from_users.rb

6 lines
115 B
Ruby
Raw Normal View History

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