Newer
Older
dmpopidor / db / migrate / 20130903084409_create_option_warnings.rb
@Marta Ribeiro Marta Ribeiro on 3 Jun 2016 223 bytes DMPonline4 - RAILS 4.0 (#4)
class CreateOptionWarnings < ActiveRecord::Migration
  def change
    create_table :option_warnings do |t|
      t.references :organisation
      t.references :option
      t.text :text
      t.timestamps
    end
  end
end