Sha256: 1cb1a41347c640372236bd9adc07996d8fbfb6d2e9edeb8907993f6649dff692
Contents?: true
Size: 1.01 KB
Versions: 1
Compression:
Stored size: 1.01 KB
Contents
# ## Schema Information # # Table name: `gi_job_logs` # # ### Columns # # Name | Type | Attributes # ---------------------------- | ------------------ | --------------------------- # **`id`** | `bigint` | `unsigned, not null, primary key` # **`gi_job_transaction_id`** | `bigint` | # **`level`** | `integer` | `default("info"), not null` # **`position`** | `integer` | # **`division`** | `string(255)` | # **`description`** | `text(65535)` | # **`created_at`** | `datetime` | `not null` # **`updated_at`** | `datetime` | `not null` # # ### Indexes # # * `gi_job_logs_ix1`: # * **`gi_job_transaction_id`** # * **`level`** # * **`division`** # * `index_gi_job_logs_on_gi_job_transaction_id`: # * **`gi_job_transaction_id`** # class GiJobLog < ApplicationRecord include GiJob::Models::Concerns::GiJobLoggable end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
gi_job-0.1.3 | lib/generators/gi_job/install/templates/models/gi_job_log.rb |