add category field to pools

This commit is contained in:
Toks
2013-05-06 12:14:42 -04:00
parent 1d56f237a8
commit a9efb93e99
4 changed files with 25 additions and 2 deletions

View File

@@ -0,0 +1,6 @@
class AddCategoryToPools < ActiveRecord::Migration
def change
execute("set statement_timeout = 0")
add_column :pools, :category, :string, :null => false, :default => "series"
end
end