2026-05-17 11:12:43 +00:00
|
|
|
# Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
|
|
|
|
|
|
2026-05-25 16:15:06 +00:00
|
|
|
# == Schema Information
|
|
|
|
|
#
|
2026-05-30 14:54:26 +00:00
|
|
|
# Table name: users
|
2026-05-25 16:15:06 +00:00
|
|
|
#
|
|
|
|
|
# id :bigint not null, primary key
|
|
|
|
|
# email :string
|
|
|
|
|
# name :string
|
|
|
|
|
# password_digest :string
|
2026-05-30 14:54:26 +00:00
|
|
|
# role :integer
|
2026-05-25 16:15:06 +00:00
|
|
|
# created_at :datetime not null
|
|
|
|
|
# updated_at :datetime not null
|
|
|
|
|
#
|
|
|
|
|
# Indexes
|
|
|
|
|
#
|
2026-05-30 14:54:26 +00:00
|
|
|
# index_users_on_email (email) UNIQUE
|
2026-05-25 16:15:06 +00:00
|
|
|
#
|
2026-05-17 11:12:43 +00:00
|
|
|
one:
|
2026-05-30 14:54:26 +00:00
|
|
|
email: guest@test.com
|
|
|
|
|
name: Guest
|
2026-05-17 11:12:43 +00:00
|
|
|
password_digest: MyString
|
2026-05-30 14:54:26 +00:00
|
|
|
role: 0
|
2026-05-17 11:12:43 +00:00
|
|
|
|
|
|
|
|
two:
|
2026-05-30 14:54:26 +00:00
|
|
|
email: admin@test.com
|
|
|
|
|
name: Admin
|
2026-05-17 11:12:43 +00:00
|
|
|
password_digest: MyString
|
2026-05-30 14:54:26 +00:00
|
|
|
role: 1
|