مراية لـ
https://github.com/postalserver/postal.git
تم المزامنة 2025-11-30 21:32:30 +00:00
21 أسطر
471 B
Ruby
21 أسطر
471 B
Ruby
# frozen_string_literal: true
|
|
|
|
# == Schema Information
|
|
#
|
|
# Table name: address_endpoints
|
|
#
|
|
# id :integer not null, primary key
|
|
# address :string(255)
|
|
# last_used_at :datetime
|
|
# uuid :string(255)
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
# server_id :integer
|
|
#
|
|
FactoryBot.define do
|
|
factory :address_endpoint do
|
|
server
|
|
sequence(:address) { |n| "test#{n}@example.com" }
|
|
end
|
|
end
|