demarches-normaliennes/db/migrate/20240316065520_champs_add_stable_id.rb
2024-03-18 11:34:55 +01:00

6 lines
163 B
Ruby

class ChampsAddStableId < ActiveRecord::Migration[7.0]
def change
add_column :champs, :stable_id, :bigint
add_column :champs, :stream, :string
end
end