mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-27 04:51:14 +00:00
10 lines
165 B
Ruby
10 lines
165 B
Ruby
|
class RemoveRconFromServers < ActiveRecord::Migration
|
||
|
def up
|
||
|
remove_column :servers, :rcon
|
||
|
end
|
||
|
|
||
|
def down
|
||
|
add_column :servers, :rcon, :string
|
||
|
end
|
||
|
end
|