fununloaded/One_Eighty_Degrees_Consulting

View on GitHub
db/seeds.rb

Summary

Maintainability
A
0 mins
Test Coverage
# 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)
User.create(email: "admin1@berkeley.edu", password: "password123", member_type: "admin", confirmed_at: Time.now)
User.create(email: "user@berkeley.edu", password: "password123", confirmed_at: Time.now)