11 lines
251 B
Ruby
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
|