Allow plugin to take an etc_type keyword argument for using the TYPE_ETC ubid type, and remove the separate definitions in every model that uses the TYPE_ETC ubid type. This was the cleanest way to DRY things up. You cannot extend the models with a module to do this before including ResourceMethods, because then ResourceMethods::ClassMethods will override it, and you cannot extend the models with a module to do this after including ResourceMethods, because the inclusion will not work correctly due to the eager definition of @ubid_format. Best reviewed without whitespace differences.
21 lines
700 B
Ruby
21 lines
700 B
Ruby
# frozen_string_literal: true
|
|
|
|
require "sequel"
|
|
|
|
class DiscountCode < Sequel::Model
|
|
plugin ResourceMethods
|
|
end
|
|
|
|
# Table: discount_code
|
|
# Columns:
|
|
# id | uuid | PRIMARY KEY
|
|
# created_at | timestamp with time zone | NOT NULL DEFAULT CURRENT_TIMESTAMP
|
|
# code | citext | NOT NULL
|
|
# credit_amount | numeric | NOT NULL
|
|
# expires_at | timestamp with time zone | NOT NULL
|
|
# Indexes:
|
|
# discount_code_pkey | PRIMARY KEY btree (id)
|
|
# discount_code_code_key | UNIQUE btree (code)
|
|
# Referenced By:
|
|
# project_discount_code | project_discount_code_discount_code_id_fkey | (discount_code_id) REFERENCES discount_code(id)
|