Files
ubicloud/model/postgres/postgres_firewall_rule.rb
Jeremy Evans 718370f4c9 Convert ResourceMethods to a plugin
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.
2025-06-04 04:55:45 +09:00

22 lines
732 B
Ruby

# frozen_string_literal: true
require_relative "../../model"
class PostgresFirewallRule < Sequel::Model
many_to_one :postgres_resource, key: :postgres_resource_id
plugin ResourceMethods
end
# Table: postgres_firewall_rule
# Columns:
# id | uuid | PRIMARY KEY
# cidr | cidr | NOT NULL
# postgres_resource_id | uuid | NOT NULL
# description | text |
# Indexes:
# postgres_firewall_rule_pkey | PRIMARY KEY btree (id)
# postgres_firewall_rule_postgres_resource_id_cidr_key | UNIQUE btree (postgres_resource_id, cidr)
# Foreign key constraints:
# postgres_firewall_rule_postgres_resource_id_fkey | (postgres_resource_id) REFERENCES postgres_resource(id)