ensl.org/db/migrate/20150518162749_remove_rcon_from_servers.rb
Ari Timonen 6bcfffa1ee Major update, bugfixes
- Use ruby 2.7.7 as it fixed startup issues
- Update gems
- Remove depr. from puma startup
- Make entry.sh dir-agnostic

Fix tests:
- Use apparition
- Update migrations to use new syntax
- Some other minor changes
2023-02-19 17:08:46 +02:00

9 lines
170 B
Ruby

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