2024-04-29 00:17:15 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2020-04-22 17:53:45 +02:00
|
|
|
class AddEffectifAnneeAnterieure < ActiveRecord::Migration[5.2]
|
|
|
|
def change
|
|
|
|
add_column :etablissements, :entreprise_effectif_annuel, :decimal
|
|
|
|
add_column :etablissements, :entreprise_effectif_annuel_annee, :string
|
|
|
|
end
|
|
|
|
end
|