Add result_computed to GroupOrderArticle

This commit is contained in:
wvengen 2014-01-03 10:07:03 +01:00
parent a439f26b67
commit 7aae7f4d55
2 changed files with 9 additions and 1 deletions

View file

@ -0,0 +1,7 @@
class AddResultComputedToGroupOrderArticles < ActiveRecord::Migration
def change
add_column :group_order_articles, :result_computed,
:decimal, :precision => 8, :scale => 3,
:null => false, :default => 0
end
end