demarches-normaliennes/db/migrate/20170306102320_create_without_continuation_mails.rb

12 lines
289 B
Ruby
Raw Normal View History

class CreateWithoutContinuationMails < ActiveRecord::Migration[5.0]
def change
create_table :without_continuation_mails do |t|
t.text :body
2017-03-07 16:23:44 +01:00
t.string :object
t.belongs_to :procedure, index: true, unique: true, foreign_key: true
t.timestamps
end
end
end