Files
progress-test/spec/factories/roles.rb
2022-07-21 10:52:14 -03:00

19 lines
315 B
Ruby

# == Schema Information
#
# Table name: roles
#
# id :bigint not null, primary key
# name :string
# created_at :datetime not null
# updated_at :datetime not null
#
# Indexes
#
# index_roles_on_name (name) UNIQUE
#
FactoryBot.define do
factory :role do
end
end