Files
x-stake/app/models/currency.rb
2021-08-10 23:18:32 -03:00

15 lines
336 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
#
class Currency < ApplicationRecord
validates :name, presence: true
end