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

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