2015-08-10 11:05:06 +02:00
|
|
|
# This file should contain all the record creation needed to seed the database with its default values.
|
|
|
|
# The data can then be loaded with the rake db:seed (or created alongside the db with db:setup).
|
|
|
|
#
|
|
|
|
# Examples:
|
|
|
|
#
|
|
|
|
# cities = City.create([{ name: 'Chicago' }, { name: 'Copenhagen' }])
|
|
|
|
# Mayor.create(name: 'Emanuel', city: cities.first)
|
|
|
|
|
|
|
|
Dir[File.join(Rails.root, 'db', 'seeds', '*.rb')].sort.each { |seed| load seed }
|
|
|
|
|
2015-08-28 11:22:25 +02:00
|
|
|
puts "create links"
|
|
|
|
TypePieceJointe.find_each do |type_piece_jointe|
|
|
|
|
forms = Formulaire.find_by_demarche_id(type_piece_jointe.CERFA)
|
|
|
|
type_piece_jointe.update_attributes(formulaire_id: forms.id) unless forms.nil?
|
|
|
|
end
|
|
|
|
puts "end links creation"
|