demarches-normaliennes/db/migrate/20150806075144_create_ref_pieces_jointes.rb

18 lines
418 B
Ruby
Raw Normal View History

2015-08-10 11:05:06 +02:00
class CreateRefPiecesJointes < ActiveRecord::Migration
def change
create_table :ref_pieces_jointes do |t|
t.string :CERFA
t.string :nature
t.string :libelle_complet
t.string :etablissement
t.string :libelle
t.string :description
t.string :demarche
t.string :administration_emetrice
t.boolean :api_entreprise
t.timestamps null: false
end
end
end