NEW FORMULA, EVEN BETTER TASTE

This commit is contained in:
Kyle Drake 2015-08-27 22:25:19 -07:00
parent 55dce7e80e
commit b246eefe1d
2 changed files with 32 additions and 6 deletions

View file

@ -0,0 +1,13 @@
# IT'S MADE OUT OF FUCKING DECIMAL PEOPLE
Sequel.migration do
up {
DB.drop_column :sites, :score
DB.add_column :sites, :score, :decimal, default: 0
}
down {
DB.drop_column :sites, :score
DB.add_column :sites, :score, :integer
}
end