Sha256: 0375a32cf5685f62da381640c82a95e6f8226c8a312ead4dcd8fa02007374bd0
Contents?: true
Size: 945 Bytes
Versions: 1
Compression:
Stored size: 945 Bytes
Contents
create_table "gi_job_transactions", id: :bigint, unsigned: true, force: :cascade, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4" do |t| t.references "owner", polymorphic: true t.string "name", default: "-", null: false t.integer "status", default: 100, null: false t.integer "counts_all" t.integer "counts_progress" t.integer "counts_completed" t.integer "counts_errord" t.integer "command", default: 100, null: false t.text "parameter" t.string "process_id" t.integer "process_status", default: 100, null: false t.text "process_progress" t.timestamps end add_index "gi_job_transactions", ["owner_id", "owner_type", "name", "status"], name: "gi_job_transactions_ix1", using: :btree add_index "gi_job_transactions", ["updated_at"], name: "gi_job_transactions_ix2", using: :btree
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
gi_job-0.1.3 | lib/generators/gi_job/install/templates/schemas/gi_job_transactions.schema |