1
0
Fork 0
mirror of https://github.com/neocities/neocities.git synced 2025-05-11 09:18:30 +02:00
neocities/migrations/045_remove_servers.rb

15 lines
No EOL
255 B
Ruby

Sequel.migration do
up {
DB.drop_table :servers
}
down {
DB.create_table! :servers do
primary_key :id
String :ip
Integer :slots_available
DateTime :created_at
DateTime :updated_at
end
}
end