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

11 lines
209 B
Ruby

class CreateMailMethods < ActiveRecord::Migration
def change
create_table :mail_methods do |t|
t.string :environment
t.boolean :active, :default => true
t.timestamps
end
end
end