29 lines
No EOL
617 B
YAML
29 lines
No EOL
617 B
YAML
# Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
|
|
|
|
# == Schema Information
|
|
#
|
|
# Table name: users
|
|
#
|
|
# id :bigint not null, primary key
|
|
# email :string
|
|
# name :string
|
|
# password_digest :string
|
|
# role :integer
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
#
|
|
# Indexes
|
|
#
|
|
# index_users_on_email (email) UNIQUE
|
|
#
|
|
one:
|
|
email: guest@test.com
|
|
name: Guest
|
|
password_digest: MyString
|
|
role: 0
|
|
|
|
two:
|
|
email: admin@test.com
|
|
name: Admin
|
|
password_digest: MyString
|
|
role: 1 |