Newer
Older
dmpopidor / db / migrate / 20130611113325_create_organisation_types.rb
@Marta Ribeiro Marta Ribeiro on 3 Jun 2016 209 bytes DMPonline4 - RAILS 4.0 (#4)
class CreateOrganisationTypes < ActiveRecord::Migration
  def change
    create_table :organisation_types do |t|
      t.string :org_type_name
      t.text :org_type_desc

      t.timestamps
    end
  end
end