Sha256: e91ed58ddd8ea776c6237dcd566a0792fa4be4a6b91f5f8b16aea0421048a4d4
Contents?: true
Size: 632 Bytes
Versions: 11
Compression:
Stored size: 632 Bytes
Contents
module PactBroker module Config class Setting < Sequel::Model(:config) end Setting.plugin :timestamps, update_on_create: true end end # Table: config # Columns: # id | integer | PRIMARY KEY GENERATED BY DEFAULT AS IDENTITY # name | text | NOT NULL # type | text | NOT NULL # value | text | # created_at | timestamp without time zone | NOT NULL # updated_at | timestamp without time zone | NOT NULL # Indexes: # config_pkey | PRIMARY KEY btree (id) # unq_config_name | UNIQUE btree (name)
Version data entries
11 entries across 11 versions & 1 rubygems