cirandas.net

ref: master

db/migrate/20161213181725_create_kinds_profiles.rb


1
2
3
4
5
6
7
8
class CreateKindsProfiles < ActiveRecord::Migration
  def change
    create_table :kinds_profiles do |t|
      t.references :kind
      t.references :profile
    end
  end
end