mirror of
https://github.com/neocities/neocities.git
synced 2025-04-25 01:32:36 +02:00
12 lines
No EOL
187 B
Ruby
12 lines
No EOL
187 B
Ruby
Sequel.migration do
|
|
up {
|
|
DB.create_table! :blocked_ips do
|
|
String :ip, primary_key: true
|
|
DateTime :created_at
|
|
end
|
|
}
|
|
|
|
down {
|
|
DB.drop_table :blocked_ips
|
|
}
|
|
end |