add experimental custom domain support

This commit is contained in:
Kyle Drake 2013-07-27 00:07:06 -04:00
parent 237ce5f419
commit 8014a21c2c
8 changed files with 103 additions and 2 deletions

View file

@ -4,6 +4,6 @@ Sequel.migration do
}
down {
DB.add_column :sites, :is_nsfw
DB.drop_column :sites, :is_nsfw
}
end

View file

@ -0,0 +1,9 @@
Sequel.migration do
up {
DB.add_column :sites, :domain, :text, default: nil
}
down {
DB.drop_column :sites, :domain
}
end