Sha256: 1f2fa7af9eb90cec03f6703a3a35684e4b8b97a86b0f5fb3e6809ce4f6dec29c
Contents?: true
Size: 845 Bytes
Versions: 78
Compression:
Stored size: 845 Bytes
Contents
require 'pact_broker/db' module PactBroker module Domain class Label < Sequel::Model unrestrict_primary_key associate(:many_to_one, :pacticipant, :class => "PactBroker::Domain::Pacticipant", :key => :pacticipant_id, :primary_key => :id) def <=> other name <=> other.name end end Label.plugin :timestamps, update_on_create: true end end # Table: labels # Primary Key: (name, pacticipant_id) # Columns: # name | text | # pacticipant_id | integer | # created_at | timestamp without time zone | NOT NULL # updated_at | timestamp without time zone | NOT NULL # Indexes: # labels_pk | PRIMARY KEY btree (pacticipant_id, name) # Foreign key constraints: # labels_pacticipant_id_fkey | (pacticipant_id) REFERENCES pacticipants(id)
Version data entries
78 entries across 78 versions & 1 rubygems