demarches-normaliennes/db/migrate/20240316065520_champs_add_stable_id.rb

9 lines
194 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2024-03-15 14:56:46 +01:00
class ChampsAddStableId < ActiveRecord::Migration[7.0]
def change
add_column :champs, :stable_id, :bigint
add_column :champs, :stream, :string
end
end