Adding notes field to products

This commit is contained in:
Will Marshall
2014-02-04 14:11:32 +11:00
parent a2e396694b
commit 2bb004ebaa
6 changed files with 28 additions and 3 deletions

View File

@@ -0,0 +1,5 @@
class AddNotesToProducts < ActiveRecord::Migration
def change
add_column :spree_products, :notes, :text
end
end