rcrewai-rails 0.2.3 → 0.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 549c659f778f292e8677b5f5cbf13461ba9873d044dd12317cb4f7944ec7ee46
|
4
|
+
data.tar.gz: a8d6363f2648b9c8791064f4b747d7c602d988a9372999142ad28be827f38c24
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 22d327599cb0fa2bb640a97e996a60235a35eef0a65ba66246918450cf002b82a65df1c03c7271f538bb35ee992eb6accbff3204f5f3e429caaa9f5863eb8ee4
|
7
|
+
data.tar.gz: c777c68dc9dfa1ae135b93b44f3ab2b5e36d97e63d06d8c94a6c1e2bca5db6e250df8a6955ac9b942dae5acfda73a988a542c3115fe4b1730bd90846b5e4a628
|
@@ -37,7 +37,6 @@ class CreateRcrewaiTables < ActiveRecord::Migration[7.0]
|
|
37
37
|
t.timestamps
|
38
38
|
end
|
39
39
|
|
40
|
-
add_index :rcrewai_agents, :crew_id
|
41
40
|
add_index :rcrewai_agents, :name
|
42
41
|
|
43
42
|
create_table :rcrewai_tasks do |t|
|
@@ -57,7 +56,6 @@ class CreateRcrewaiTables < ActiveRecord::Migration[7.0]
|
|
57
56
|
t.timestamps
|
58
57
|
end
|
59
58
|
|
60
|
-
add_index :rcrewai_tasks, :crew_id
|
61
59
|
add_index :rcrewai_tasks, :position
|
62
60
|
|
63
61
|
create_table :rcrewai_task_assignments do |t|
|
@@ -92,7 +90,6 @@ class CreateRcrewaiTables < ActiveRecord::Migration[7.0]
|
|
92
90
|
t.timestamps
|
93
91
|
end
|
94
92
|
|
95
|
-
add_index :rcrewai_executions, :crew_id
|
96
93
|
add_index :rcrewai_executions, :status
|
97
94
|
add_index :rcrewai_executions, :created_at
|
98
95
|
|
@@ -106,7 +103,6 @@ class CreateRcrewaiTables < ActiveRecord::Migration[7.0]
|
|
106
103
|
t.timestamps
|
107
104
|
end
|
108
105
|
|
109
|
-
add_index :rcrewai_execution_logs, :execution_id
|
110
106
|
add_index :rcrewai_execution_logs, :level
|
111
107
|
add_index :rcrewai_execution_logs, :timestamp
|
112
108
|
end
|
@@ -37,7 +37,6 @@ class CreateRcrewaiTables < ActiveRecord::Migration[7.0]
|
|
37
37
|
t.timestamps
|
38
38
|
end
|
39
39
|
|
40
|
-
add_index :rcrewai_agents, :crew_id
|
41
40
|
add_index :rcrewai_agents, :name
|
42
41
|
|
43
42
|
create_table :rcrewai_tasks do |t|
|
@@ -57,7 +56,6 @@ class CreateRcrewaiTables < ActiveRecord::Migration[7.0]
|
|
57
56
|
t.timestamps
|
58
57
|
end
|
59
58
|
|
60
|
-
add_index :rcrewai_tasks, :crew_id
|
61
59
|
add_index :rcrewai_tasks, :position
|
62
60
|
|
63
61
|
create_table :rcrewai_task_assignments do |t|
|
@@ -92,7 +90,6 @@ class CreateRcrewaiTables < ActiveRecord::Migration[7.0]
|
|
92
90
|
t.timestamps
|
93
91
|
end
|
94
92
|
|
95
|
-
add_index :rcrewai_executions, :crew_id
|
96
93
|
add_index :rcrewai_executions, :status
|
97
94
|
add_index :rcrewai_executions, :created_at
|
98
95
|
|
@@ -106,7 +103,6 @@ class CreateRcrewaiTables < ActiveRecord::Migration[7.0]
|
|
106
103
|
t.timestamps
|
107
104
|
end
|
108
105
|
|
109
|
-
add_index :rcrewai_execution_logs, :execution_id
|
110
106
|
add_index :rcrewai_execution_logs, :level
|
111
107
|
add_index :rcrewai_execution_logs, :timestamp
|
112
108
|
end
|