solid_queue 0.8.1 → 0.8.2
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b975d1366456d8f53686e0cee4f14e35dfc5461b206de7553818a109f6ae0088
|
4
|
+
data.tar.gz: 3d1084ecd73a3cd5c557d89b9edf36bac7db5c1f9ce2e995811c31370c261b6b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e06a86af9d282440726a2dfd81d03637d093e7a12fca7f43be3a1f28312d9117c90ce778a7c04923eb5a57feb2909721d1da9c32f0d5b640dc3c09cf3a3c98db
|
7
|
+
data.tar.gz: 888f76de27a21e99cc64835b005a140b555b812a06f32b7c7588c5b423e8f84301760c653bcfa2a4020def4d6aa3f8c5464684277bf26833355e4cc82cf684d5
|
@@ -1,6 +1,6 @@
|
|
1
1
|
ActiveRecord::Schema[7.1].define(version: 2024_09_04_193154) do
|
2
2
|
create_table "solid_queue_blocked_executions", force: :cascade do |t|
|
3
|
-
t.
|
3
|
+
t.bigint "job_id", null: false
|
4
4
|
t.string "queue_name", null: false
|
5
5
|
t.integer "priority", default: 0, null: false
|
6
6
|
t.string "concurrency_key", null: false
|
@@ -12,7 +12,7 @@ ActiveRecord::Schema[7.1].define(version: 2024_09_04_193154) do
|
|
12
12
|
end
|
13
13
|
|
14
14
|
create_table "solid_queue_claimed_executions", force: :cascade do |t|
|
15
|
-
t.
|
15
|
+
t.bigint "job_id", null: false
|
16
16
|
t.bigint "process_id"
|
17
17
|
t.datetime "created_at", null: false
|
18
18
|
t.index [ "job_id" ], name: "index_solid_queue_claimed_executions_on_job_id", unique: true
|
@@ -20,7 +20,7 @@ ActiveRecord::Schema[7.1].define(version: 2024_09_04_193154) do
|
|
20
20
|
end
|
21
21
|
|
22
22
|
create_table "solid_queue_failed_executions", force: :cascade do |t|
|
23
|
-
t.
|
23
|
+
t.bigint "job_id", null: false
|
24
24
|
t.text "error"
|
25
25
|
t.datetime "created_at", null: false
|
26
26
|
t.index [ "job_id" ], name: "index_solid_queue_failed_executions_on_job_id", unique: true
|
@@ -65,7 +65,7 @@ ActiveRecord::Schema[7.1].define(version: 2024_09_04_193154) do
|
|
65
65
|
end
|
66
66
|
|
67
67
|
create_table "solid_queue_ready_executions", force: :cascade do |t|
|
68
|
-
t.
|
68
|
+
t.bigint "job_id", null: false
|
69
69
|
t.string "queue_name", null: false
|
70
70
|
t.integer "priority", default: 0, null: false
|
71
71
|
t.datetime "created_at", null: false
|
@@ -75,7 +75,7 @@ ActiveRecord::Schema[7.1].define(version: 2024_09_04_193154) do
|
|
75
75
|
end
|
76
76
|
|
77
77
|
create_table "solid_queue_recurring_executions", force: :cascade do |t|
|
78
|
-
t.
|
78
|
+
t.bigint "job_id", null: false
|
79
79
|
t.string "task_key", null: false
|
80
80
|
t.datetime "run_at", null: false
|
81
81
|
t.datetime "created_at", null: false
|
@@ -100,7 +100,7 @@ ActiveRecord::Schema[7.1].define(version: 2024_09_04_193154) do
|
|
100
100
|
end
|
101
101
|
|
102
102
|
create_table "solid_queue_scheduled_executions", force: :cascade do |t|
|
103
|
-
t.
|
103
|
+
t.bigint "job_id", null: false
|
104
104
|
t.string "queue_name", null: false
|
105
105
|
t.integer "priority", default: 0, null: false
|
106
106
|
t.datetime "scheduled_at", null: false
|
data/lib/solid_queue/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: solid_queue
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.8.
|
4
|
+
version: 0.8.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Rosa Gutierrez
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-09-
|
11
|
+
date: 2024-09-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activerecord
|