rails-caf/db/migrate/20220611192407_create_subprincipalitemgroups.rb

11 lines
251 B
Ruby

class CreateSubprincipalitemgroups < ActiveRecord::Migration[7.0]
def change
create_table :subprincipleitemgroups do |t|
t.references :subprinciple, null: false, foreign_key: true
t.string :type
t.timestamps
end
end
end