You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
educoder/db/seeds.rb

25 lines
794 B

6 years ago
# 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 rails db:seed command (or created alongside the database with db:setup).
#
# Examples:
#
# movies = Movie.create([{ name: 'Star Wars' }, { name: 'Lord of the Rings' }])
# Character.create(name: 'Luke', movie: movies.first)
# 创建匿名用户
6 years ago
user_params = [
{
login: 'educoder',
hashed_password: '0434e43e945cd5aa375dc268f6af77a1c881852a',
lastname: '社区导师',
mail: '721773699@qq.com',
admin: 1,
status: 1,
language: 'zh',
show_realname: '社区导师',
professional_certification: 1,
certification: 1
}
]
users = User.create