femslash-city/migrations/071_banned_referrers.rb

13 lines
178 B
Ruby
Raw Normal View History

Sequel.migration do
up {
DB.create_table! :banned_referrers do
primary_key :id
String :name
end
}
down {
DB.drop_table :banned_referrers
}
end