mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
11 lines
209 B
Ruby
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
|