femslash-city/migrations/038_blocked_ips.rb

12 lines
187 B
Ruby
Raw Normal View History

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