mirror of
https://github.com/neocities/neocities.git
synced 2025-04-24 17:22:35 +02:00
12 lines
178 B
Ruby
12 lines
178 B
Ruby
Sequel.migration do
|
|
up {
|
|
DB.create_table! :banned_referrers do
|
|
primary_key :id
|
|
String :name
|
|
end
|
|
}
|
|
|
|
down {
|
|
DB.drop_table :banned_referrers
|
|
}
|
|
end
|