Files
x-stake/spec/factories/currencies.rb
2021-08-14 11:58:51 -03:00

17 lines
337 B
Ruby

# frozen_string_literal: true
# == Schema Information
#
# Table name: currencies
#
# id :bigint not null, primary key
# name :string not null
# created_at :datetime not null
# updated_at :datetime not null
#
FactoryBot.define do
factory :currency do
name { "CAKE" }
end
end