rails-caf/db/migrate/20220611194255_create_subprincipalitems.rb

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