view db/seeds.rb @ 143:0460c75392bc luisf

development commit: terms and conditions
author luisf
date Fri, 21 Jan 2011 14:31:29 +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