mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-11-15 09:21:25 +00:00
9 lines
165 B
Ruby
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
|