# 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) # 创建匿名用户 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