dd8bafab49
- SIRET Siège social - Code naf - Code effectif - Numéro TVA intracommunautaire - Exercices
11 lines
291 B
Ruby
11 lines
291 B
Ruby
class CreateExerciceTable < ActiveRecord::Migration
|
|
def change
|
|
create_table :exercices do |t|
|
|
t.string :ca
|
|
t.datetime :dateFinExercice
|
|
t.integer :date_fin_exercice_timestamp
|
|
end
|
|
|
|
add_reference :exercices, :etablissement, references: :etablissements
|
|
end
|
|
end
|