12 lines
229 B
Ruby
12 lines
229 B
Ruby
class CreatePlans < ActiveRecord::Migration[7.2]
|
|
def change
|
|
create_table :plans do |t|
|
|
t.string :title
|
|
|
|
t.references :employer_setup_process, null: false, foreign_key: true
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|