demarches-normaliennes/db/migrate/20200407135256_add_effectifs_mensuels_to_etablissements.rb
Christophe Robillard db3ef195ad fetch and show effectif mensuel
- fetch and store effectif mensuel (at the creation of the dossier or
when updating a siret field

- show effectif mensuel only for instructeurs
2020-04-21 14:22:11 +02:00

7 lines
270 B
Ruby

class AddEffectifsMensuelsToEtablissements < ActiveRecord::Migration[5.2]
def change
add_column :etablissements, :effectif_mois, :string
add_column :etablissements, :effectif_annee, :string
add_column :etablissements, :effectif_mensuel, :decimal
end
end