Sha256: 63d5d0357123a887ca4b3e837dc327f13ac1cf7ddac6df8abc3b032ce94ba64c
Contents?: true
Size: 683 Bytes
Versions: 8
Compression:
Stored size: 683 Bytes
Contents
module PactBroker module Certificates class Certificate < Sequel::Model set_primary_key :id end Certificate.plugin :timestamps, update_on_create: true end end # Table: certificates # Columns: # id | integer | PRIMARY KEY GENERATED BY DEFAULT AS IDENTITY # uuid | text | NOT NULL # description | text | # content | text | NOT NULL # created_at | timestamp without time zone | NOT NULL # updated_at | timestamp without time zone | NOT NULL # Indexes: # certificates_pkey | PRIMARY KEY btree (id) # uq_certificate_uuid | UNIQUE btree (uuid)
Version data entries
8 entries across 8 versions & 1 rubygems