12 lines
283 B
Ruby
12 lines
283 B
Ruby
class CreateSubprincipalitems < ActiveRecord::Migration[7.0]
|
|
def change
|
|
create_table :subprinciplitems do |t|
|
|
t.references :subprincipleitemgroup, null: false, foreign_key: true
|
|
t.text :description
|
|
t.boolean :affirmative
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|