0
0
Fork 0
mirror of https://github.com/ENSL/ensl.org.git synced 2025-01-15 06:10:53 +00:00
ensl.org/db/migrate/20150518162749_remove_rcon_from_servers.rb
2015-05-18 17:30:45 +01:00

9 lines
165 B
Ruby

class RemoveRconFromServers < ActiveRecord::Migration
def up
remove_column :servers, :rcon
end
def down
add_column :servers, :rcon, :string
end
end