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
|
|
|
|
|
#
|
|
|
|
|
# Table name: admins
|
|
|
|
|
#
|
|
|
|
|
# id :bigint not null, primary key
|
|
|
|
|
# email :string
|
|
|
|
|
# name :string
|
|
|
|
|
# password_digest :string
|
|
|
|
|
# created_at :datetime not null
|
|
|
|
|
# updated_at :datetime not null
|
|
|
|
|
#
|
|
|
|
|
# Indexes
|
|
|
|
|
#
|
|
|
|
|
# index_admins_on_email (email) UNIQUE
|
|
|
|
|
#
|
2026-05-17 11:12:43 +00:00
|
|
|
one:
|
2026-05-26 17:37:52 +00:00
|
|
|
name: Admin
|
|
|
|
|
email: admin@test.com
|
2026-05-17 11:12:43 +00:00
|
|
|
password_digest: MyString
|
|
|
|
|
|
|
|
|
|
two:
|
2026-05-26 17:37:52 +00:00
|
|
|
name: Mod
|
|
|
|
|
email: mod@test.com
|
2026-05-17 11:12:43 +00:00
|
|
|
password_digest: MyString
|