mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-22 00:57:26 +00:00
10 lines
207 B
Ruby
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
|