Sha256: 3b02d1a71f294601fa7760c0e2a6206ab0e7c4ec15a7fbf0c0a58fb8ddf9b66d
Contents?: true
Size: 1.03 KB
Versions: 1
Compression:
Stored size: 1.03 KB
Contents
# ## Schema Information # # Table name: `gi_job_files` # # ### Columns # # Name | Type | Attributes # ---------------------------- | ------------------ | --------------------------- # **`id`** | `bigint` | `unsigned, not null, primary key` # **`gi_job_transaction_id`** | `bigint` | # **`division`** | `string(255)` | # **`name`** | `string(255)` | `not null` # **`file`** | `json` | # **`rows`** | `integer` | `unsigned` # **`size`** | `bigint` | `unsigned` # **`created_at`** | `datetime` | `not null` # **`updated_at`** | `datetime` | `not null` # # ### Indexes # # * `gi_job_files_ix1`: # * **`gi_job_transaction_id`** # * `index_gi_job_files_on_gi_job_transaction_id`: # * **`gi_job_transaction_id`** # class GiJobFile < ApplicationRecord include GiJob::Models::Concerns::GiJobFileable 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_file.rb |