view db/seeds.rb @ 104:0511601cda6b luisf

DEV commit: editing the show method in the users controller
author luisf
date Thu, 16 Dec 2010 18:16:47 +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