neocities/migrations/071_banned_referrers.rb
2015-07-29 22:29:36 -07:00

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