Files
nairobi/db/migrate/20180205170054_create_newsletters.rb
2018-02-12 21:22:56 +01:00

14 lines
285 B
Ruby

class CreateNewsletters < ActiveRecord::Migration
def change
create_table :newsletters do |t|
t.string :subject
t.integer :segment_recipient
t.string :from
t.text :body
t.date :sent_at, default: nil
t.timestamps null: false
end
end
end