Mercurial > hg > soundsoftware-site
view db/seeds.rb @ 169:bc23796a7120 feature_55
ssamr validation on my/account is now done correctly
other small bug fixes.
author | luisf |
---|---|
date | Tue, 01 Feb 2011 17:50:01 +0000 |
parents | 596803cb34fc |
children | da7cba64948d |
line wrap: on
line source
# 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' }]) # Major.create(:name => 'Daley', :city => cities.first) Institution.delete_all open("db/seed_data/institutions.txt") do |institutions| institutions.read.each_line do |institution| Institution.create(:name => institution.chomp) end end