35 lines
964 B
Ruby
35 lines
964 B
Ruby
# frozen_string_literal: true
|
|
|
|
# == Schema Information
|
|
#
|
|
# Table name: sell_crypto_orders
|
|
#
|
|
# id :bigint not null, primary key
|
|
# paid_amount :decimal(20, 10) default(0.0), not null
|
|
# received_amount_cents :integer
|
|
# status :string not null
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
# currency_id :bigint not null
|
|
# user_id :bigint not null
|
|
#
|
|
# Indexes
|
|
#
|
|
# index_sell_crypto_orders_on_currency_id (currency_id)
|
|
# index_sell_crypto_orders_on_user_id (user_id)
|
|
#
|
|
# Foreign Keys
|
|
#
|
|
# fk_rails_... (currency_id => currencies.id)
|
|
# fk_rails_... (user_id => users.id)
|
|
#
|
|
FactoryBot.define do
|
|
factory :sell_crypto_order do
|
|
association :user
|
|
association :currency
|
|
status { :processing }
|
|
received_amount_cents { rand(10000) }
|
|
paid_amount { rand * 10000 }
|
|
end
|
|
end
|