2024-04-29 00:17:15 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2023-09-04 12:07:04 +02:00
|
|
|
class CreateGestionnaires < ActiveRecord::Migration[7.0]
|
|
|
|
def change
|
|
|
|
create_table "gestionnaires" do |t|
|
|
|
|
t.bigint :user_id, null: false
|
|
|
|
t.index [:user_id], name: :index_gestionnaires_on_user_id
|
|
|
|
t.timestamps
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|