13 lines
283 B
Ruby
13 lines
283 B
Ruby
|
class CreateOnboardingItems < ActiveRecord::Migration[7.1]
|
||
|
def change
|
||
|
create_table :onboarding_items do |t|
|
||
|
t.integer :form_id
|
||
|
t.text :note
|
||
|
t.date :date_completed
|
||
|
t.references :owner, polymorphic: true, null: false
|
||
|
|
||
|
t.timestamps
|
||
|
end
|
||
|
end
|
||
|
end
|