مراية لـ
https://github.com/postalserver/postal.git
تم المزامنة 2025-12-01 05:43:04 +00:00
21 أسطر
360 B
Ruby
21 أسطر
360 B
Ruby
# frozen_string_literal: true
|
|
|
|
# == Schema Information
|
|
#
|
|
# Table name: worker_roles
|
|
#
|
|
# id :bigint not null, primary key
|
|
# acquired_at :datetime
|
|
# role :string(255)
|
|
# worker :string(255)
|
|
#
|
|
# Indexes
|
|
#
|
|
# index_worker_roles_on_role (role) UNIQUE
|
|
#
|
|
FactoryBot.define do
|
|
factory :worker_role do
|
|
role { "test" }
|
|
end
|
|
end
|