major improvements to special sauce, site browsing, move front page to use non-featured, and fix bug when title missing

This commit is contained in:
Kyle Drake 2024-08-06 00:35:17 -05:00
parent 4f9b75442e
commit 2ef0d2101c
6 changed files with 193 additions and 71 deletions

View file

@ -0,0 +1,13 @@
Sequel.migration do
up {
alter_table(:sites) do
set_column_type :score, :real
end
}
down {
alter_table(:sites) do
set_column_type :score, :decimal
end
}
end