mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-27 21:06:49 +00:00
15 lines
352 B
Ruby
15 lines
352 B
Ruby
class CreateActivators < ActiveRecord::Migration
|
|
def change
|
|
create_table :activators, :force => true do |t|
|
|
t.string :description
|
|
t.datetime :expires_at
|
|
t.datetime :created_at
|
|
t.datetime :updated_at
|
|
t.datetime :starts_at
|
|
t.string :name
|
|
t.string :event_name
|
|
t.string :type
|
|
end
|
|
end
|
|
end
|