Files
openfoodnetwork/db/migrate/20120327000662_create_promotion_actions.rb
Andrew Spinks cd1938a74e spree install.
2012-03-27 11:06:49 +11:00

10 lines
207 B
Ruby

class CreatePromotionActions < ActiveRecord::Migration
def change
create_table :promotion_actions do |t|
t.integer :activator_id
t.integer :position
t.string :type
end
end
end