fractal-server 2.0.0a0__py3-none-any.whl → 2.0.0a2__py3-none-any.whl
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.
- fractal_server/__init__.py +1 -1
- fractal_server/app/models/__init__.py +0 -1
- fractal_server/app/models/v1/__init__.py +1 -0
- fractal_server/app/routes/admin/v2.py +0 -1
- fractal_server/app/routes/api/v1/job.py +3 -3
- fractal_server/app/routes/api/v2/__init__.py +2 -2
- fractal_server/app/routes/api/v2/dataset.py +0 -1
- fractal_server/app/routes/api/v2/images.py +4 -9
- fractal_server/app/routes/api/v2/project.py +0 -3
- fractal_server/app/routes/api/v2/{apply.py → submit.py} +1 -1
- fractal_server/app/routes/api/v2/workflow.py +0 -1
- fractal_server/app/runner/executors/slurm/executor.py +23 -10
- fractal_server/app/runner/task_files.py +0 -2
- fractal_server/app/runner/v1/__init__.py +2 -2
- fractal_server/app/runner/v1/_local/__init__.py +1 -1
- fractal_server/app/runner/{executors/local → v1/_local}/executor.py +2 -2
- fractal_server/app/runner/v2/__init__.py +0 -1
- fractal_server/app/runner/v2/_local/__init__.py +1 -3
- fractal_server/app/runner/v2/_local/executor.py +100 -0
- fractal_server/app/runner/v2/_slurm/__init__.py +68 -86
- fractal_server/app/runner/v2/deduplicate_list.py +7 -9
- fractal_server/app/runner/v2/merge_outputs.py +1 -4
- fractal_server/app/runner/v2/runner.py +19 -16
- fractal_server/app/runner/v2/runner_functions.py +14 -12
- fractal_server/app/runner/v2/runner_functions_low_level.py +1 -1
- fractal_server/app/schemas/v2/dataset.py +2 -1
- fractal_server/app/schemas/v2/job.py +2 -1
- fractal_server/app/schemas/v2/manifest.py +51 -1
- fractal_server/app/schemas/v2/project.py +2 -1
- fractal_server/app/schemas/v2/task.py +2 -3
- fractal_server/app/schemas/v2/workflow.py +2 -1
- fractal_server/app/schemas/v2/workflowtask.py +2 -1
- fractal_server/images/__init__.py +2 -50
- fractal_server/images/models.py +50 -0
- fractal_server/images/tools.py +35 -36
- fractal_server/migrations/env.py +0 -2
- fractal_server/migrations/versions/{56af171b0159_v2.py → d71e732236cd_v2.py} +29 -7
- fractal_server/tasks/v2/background_operations.py +0 -1
- {fractal_server-2.0.0a0.dist-info → fractal_server-2.0.0a2.dist-info}/METADATA +1 -1
- {fractal_server-2.0.0a0.dist-info → fractal_server-2.0.0a2.dist-info}/RECORD +44 -50
- fractal_server/app/runner/executors/local/__init__.py +0 -3
- fractal_server/migrations/versions/4b35c5cefbe3_tmp_is_v2_compatible.py +0 -39
- fractal_server/migrations/versions/876f28db9d4e_tmp_split_task_and_wftask_meta.py +0 -68
- fractal_server/migrations/versions/974c802f0dd0_tmp_workflowtaskv2_type_in_db.py +0 -37
- fractal_server/migrations/versions/9cd305cd6023_tmp_workflowtaskv2.py +0 -40
- fractal_server/migrations/versions/a6231ed6273c_tmp_args_schemas_in_taskv2.py +0 -42
- fractal_server/migrations/versions/b9e9eed9d442_tmp_taskv2_type.py +0 -37
- fractal_server/migrations/versions/e3e639454d4b_tmp_make_task_meta_non_optional.py +0 -50
- /fractal_server/app/runner/{v2/components.py → components.py} +0 -0
- {fractal_server-2.0.0a0.dist-info → fractal_server-2.0.0a2.dist-info}/LICENSE +0 -0
- {fractal_server-2.0.0a0.dist-info → fractal_server-2.0.0a2.dist-info}/WHEEL +0 -0
- {fractal_server-2.0.0a0.dist-info → fractal_server-2.0.0a2.dist-info}/entry_points.txt +0 -0
@@ -1,13 +1,13 @@
|
|
1
|
-
fractal_server/__init__.py,sha256=
|
1
|
+
fractal_server/__init__.py,sha256=Dk_BTAmtpB7hQFmfAIPki8mejv1k1fcy_fgijEOaSFk,24
|
2
2
|
fractal_server/__main__.py,sha256=CocbzZooX1UtGqPi55GcHGNxnrJXFg5tUU5b3wyFCyo,4958
|
3
3
|
fractal_server/alembic.ini,sha256=MWwi7GzjzawI9cCAK1LW7NxIBQDUqD12-ptJoq5JpP0,3153
|
4
4
|
fractal_server/app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
5
5
|
fractal_server/app/db/__init__.py,sha256=WZEVfdJAX7ZyBM1ngfEGeqWWcjK_NygtCbawpmbwGpU,4042
|
6
|
-
fractal_server/app/models/__init__.py,sha256=
|
6
|
+
fractal_server/app/models/__init__.py,sha256=VP6cx5xYP6p1r6CubqCoyQaUyCYY7duTRwCCIEyndbw,183
|
7
7
|
fractal_server/app/models/linkuserproject.py,sha256=eQaourbGRshvlMVlKzLYJKHEjfsW1CbWws9yW4eHXhA,567
|
8
8
|
fractal_server/app/models/security.py,sha256=UG9wCVA5GRSyHrYEFhH8lIF1hXykxsr9LSi8_dFToMY,3378
|
9
9
|
fractal_server/app/models/state.py,sha256=GUxmaDI542JI_eu5zIB91YBOt8dwkcSd4Om5yxHHy6Y,1090
|
10
|
-
fractal_server/app/models/v1/__init__.py,sha256=
|
10
|
+
fractal_server/app/models/v1/__init__.py,sha256=MyQa9Xi-O8tvZ1OHEo275uIuRit-CYZ5Yqh98vk4CUM,413
|
11
11
|
fractal_server/app/models/v1/dataset.py,sha256=99GDgt7njx8yYQApkImqp_7bHA5HH3ElvbR6Oyj9kVI,2017
|
12
12
|
fractal_server/app/models/v1/job.py,sha256=QLGXcWdVRHaUHQNDapYYlLpEfw4K7QyD8TmcwhrWw2o,3304
|
13
13
|
fractal_server/app/models/v1/project.py,sha256=sDmAFLOBK5o4dLrwsIN681JcT5J1rzoUNTV9QVqwnA8,859
|
@@ -22,27 +22,27 @@ fractal_server/app/models/v2/workflow.py,sha256=4pSTeZC78OQbgHHC5S0ge6pK1AP6ak7Q
|
|
22
22
|
fractal_server/app/models/v2/workflowtask.py,sha256=f2a85MSAyBAdC7oG6SR8mViMNqlomQWaIB08n3ZhT-0,2727
|
23
23
|
fractal_server/app/routes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
24
24
|
fractal_server/app/routes/admin/v1.py,sha256=uY6H1znlAlrM9e1MG2EThTqwciCl87Twew34JM5W6IU,13981
|
25
|
-
fractal_server/app/routes/admin/v2.py,sha256=
|
25
|
+
fractal_server/app/routes/admin/v2.py,sha256=TFG6oshQXY5QlW_SIxVlQw5rSJm0tqDEnijmHE2ea-4,8891
|
26
26
|
fractal_server/app/routes/api/__init__.py,sha256=EVyZrEq3I_1643QGTPCC5lgCp4xH_auYbrFfogTm4pc,315
|
27
27
|
fractal_server/app/routes/api/v1/__init__.py,sha256=Y2HQdG197J0a7DyQEE2jn53IfxD0EHGhzK1I2JZuEck,958
|
28
28
|
fractal_server/app/routes/api/v1/_aux_functions.py,sha256=eC5exnGj9jnJqx0ccecoNaipxDeK2ZsR1ev0syH5x-Y,11955
|
29
29
|
fractal_server/app/routes/api/v1/dataset.py,sha256=7z57FGBTCyz_G6Ivr1PeGIXGyd15fs4iLD2aJUxnslA,16911
|
30
|
-
fractal_server/app/routes/api/v1/job.py,sha256=
|
30
|
+
fractal_server/app/routes/api/v1/job.py,sha256=NwXyhvvzdPDor0ts8Im__9-I0P1H943s4NXIRgaz7PM,5436
|
31
31
|
fractal_server/app/routes/api/v1/project.py,sha256=keqA0gYM48lyFP8zJgZ6cv34V6Js8DD-gbzE316H46k,15765
|
32
32
|
fractal_server/app/routes/api/v1/task.py,sha256=4zUXMtq5M95XjaZs1t9oibYHiDIwxpM-3sTAxN95aRk,6123
|
33
33
|
fractal_server/app/routes/api/v1/task_collection.py,sha256=LtOakYF30XiKo4ei7i09WSZ7u4D9pPJhhQBxHaSLr9M,8457
|
34
34
|
fractal_server/app/routes/api/v1/workflow.py,sha256=ZObifWTPi100oRQ1wEER8Sgsr3Neo8QVdCCFQnWMNZ0,10930
|
35
35
|
fractal_server/app/routes/api/v1/workflowtask.py,sha256=ox-DIIqYV4K35hCu86eGa2SHnR5IQml-I00UHEwnmHQ,5579
|
36
|
-
fractal_server/app/routes/api/v2/__init__.py,sha256=
|
36
|
+
fractal_server/app/routes/api/v2/__init__.py,sha256=wCd4eBUnZlP43uoFDKtrFMZBwDQz6pX8owGs3pdtixk,1217
|
37
37
|
fractal_server/app/routes/api/v2/_aux_functions.py,sha256=AA_DHK5OfLs9AEm_uWlf3O6zV0_A4j23dp1PDBbxsyc,14142
|
38
|
-
fractal_server/app/routes/api/v2/
|
39
|
-
fractal_server/app/routes/api/v2/
|
40
|
-
fractal_server/app/routes/api/v2/images.py,sha256=nj4QiPhoT6Pzp1IWzaX0iADgNIp3VaAV2wR0vfJJijI,5939
|
38
|
+
fractal_server/app/routes/api/v2/dataset.py,sha256=Djq-4IwAKehgBRvSCtQba4ctgKu5P113HyL7Nat7JHM,9702
|
39
|
+
fractal_server/app/routes/api/v2/images.py,sha256=5voGxRbx5qTnrRbnku-Q6neE1KcW8unOaaLuOFNFGyA,5765
|
41
40
|
fractal_server/app/routes/api/v2/job.py,sha256=9mXaKCX_N3FXM0GIxdE49nWl_hJZ8CBLBIaMMhaCKOM,5334
|
42
|
-
fractal_server/app/routes/api/v2/project.py,sha256=
|
41
|
+
fractal_server/app/routes/api/v2/project.py,sha256=YYche5eKdQu-Wnd2ob_zwxz-cVz3x3-zC-pFS0GWD6M,6091
|
42
|
+
fractal_server/app/routes/api/v2/submit.py,sha256=I8asPxY3KUogLbeDi0uPNbVLQBunOwMHCp1fbTYmdyg,7219
|
43
43
|
fractal_server/app/routes/api/v2/task.py,sha256=gJ0LruSk-Q1iMw8ZOX8C0wrZ4S4DGlQTr_5SdJJud0Q,7130
|
44
44
|
fractal_server/app/routes/api/v2/task_collection.py,sha256=kxSOOSsTFq2w1SeDwMeX6mSDPYbH5Uds18xpdLU5kTo,8466
|
45
|
-
fractal_server/app/routes/api/v2/workflow.py,sha256=
|
45
|
+
fractal_server/app/routes/api/v2/workflow.py,sha256=MPfwyrksZ4tA5eh1ZULoKT7L2P8w_M-rgmcyaUNvQTE,12580
|
46
46
|
fractal_server/app/routes/api/v2/workflowtask.py,sha256=8Ibu71nSJg-v5d5hJVOz9YRGomj7dVOaiIhQK50_O6s,8895
|
47
47
|
fractal_server/app/routes/auth.py,sha256=Xv80iqdyfY3lyicYs2Y8B6zEDEnyUu_H6_6psYtv3R4,4885
|
48
48
|
fractal_server/app/routes/aux/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -50,44 +50,44 @@ fractal_server/app/routes/aux/_job.py,sha256=5gKgvArAruSkMQuPN34Vvzi89WJbwWPsx0o
|
|
50
50
|
fractal_server/app/routes/aux/_runner.py,sha256=psW6fsoo_VrAHrD5UQPbqFYikCp0m16VRymC-U1yUTk,675
|
51
51
|
fractal_server/app/runner/.gitignore,sha256=ytzN_oyHWXrGU7iFAtoHSTUbM6Rn6kG0Zkddg0xZk6s,16
|
52
52
|
fractal_server/app/runner/async_wrap.py,sha256=_O6f8jftKYXG_DozkmlrDBhoiK9QhE9MablOyECq2_M,829
|
53
|
+
fractal_server/app/runner/components.py,sha256=ZF8ct_Ky5k8IAcrmpYOZ-bc6OBgdELEighYVqFDEbZg,119
|
53
54
|
fractal_server/app/runner/exceptions.py,sha256=_qZ_t8O4umAdJ1ikockiF5rDJuxnEskrGrLjZcnQl7A,4159
|
54
|
-
fractal_server/app/runner/executors/local/__init__.py,sha256=pyYWeOkZ1ro62koB6Jr3FcanFqNRqFU93kXhncH5Vck,89
|
55
|
-
fractal_server/app/runner/executors/local/executor.py,sha256=KACBzlG7RoK3g_OktP_sAfERU5N-K4JxU1sHYP44KvU,3644
|
56
55
|
fractal_server/app/runner/executors/slurm/__init__.py,sha256=Cjn1rYvljddi96tAwS-qqGkNfOcfPzjChdaEZEObCcM,65
|
57
56
|
fractal_server/app/runner/executors/slurm/_batching.py,sha256=1P6CgrAOCK9u_EvNFTumcQ-PcZMpocCaSAyNr0YB1js,8841
|
58
57
|
fractal_server/app/runner/executors/slurm/_check_jobs_status.py,sha256=8d29a7DQ2xoWxoFQCnFfTpHER-qBX8mEatl4Dw5HU_o,1908
|
59
58
|
fractal_server/app/runner/executors/slurm/_executor_wait_thread.py,sha256=J3tjAx33nBgW4eHAXDte7hDs7Oe9FLEZaElEt8inrbg,4421
|
60
59
|
fractal_server/app/runner/executors/slurm/_slurm_config.py,sha256=rF37XDImX1QoWx37MC5hSM9AuY_KfHU5gaWwN4vl4Zk,15552
|
61
60
|
fractal_server/app/runner/executors/slurm/_subprocess_run_as_user.py,sha256=8CCtxWCuB5UDst3C_WJxBU77xwPrpDyq7iMCZMnodXU,5123
|
62
|
-
fractal_server/app/runner/executors/slurm/executor.py,sha256=
|
61
|
+
fractal_server/app/runner/executors/slurm/executor.py,sha256=iqp73KdTPCnVtMA-FeEGXxtnYuzz-UB_7UnhNYWqIaU,44504
|
63
62
|
fractal_server/app/runner/executors/slurm/remote.py,sha256=wLziIsGdSMiO-jIXM8x77JRK82g_2hx0iBKTiMghuIo,5852
|
64
63
|
fractal_server/app/runner/filenames.py,sha256=9lwu3yB4C67yiijYw8XIKaLFn3mJUt6_TCyVFM_aZUQ,206
|
65
64
|
fractal_server/app/runner/set_start_and_last_task_index.py,sha256=-q4zVybAj8ek2XlbENKlfOAJ39hT_zoJoZkqzDqiAMY,1254
|
66
|
-
fractal_server/app/runner/task_files.py,sha256=
|
67
|
-
fractal_server/app/runner/v1/__init__.py,sha256=
|
65
|
+
fractal_server/app/runner/task_files.py,sha256=c5mggMy7BIK_yBUvbimFgvKFZPKKDu6RRfWepwinBVk,3219
|
66
|
+
fractal_server/app/runner/v1/__init__.py,sha256=meqMG2UejFa_1hm5xlsmkDxsM7Y_hqftsexuteQXOrE,13608
|
68
67
|
fractal_server/app/runner/v1/_common.py,sha256=hlSh-lUWbDCWP2k4isswoU9hh7huoT2Zy7cEwjXwnzk,21238
|
69
|
-
fractal_server/app/runner/v1/_local/__init__.py,sha256=
|
68
|
+
fractal_server/app/runner/v1/_local/__init__.py,sha256=CMKYo01skbGKCc2UHp7HDe4-uu7EKS50a6tSllwCxNk,6919
|
70
69
|
fractal_server/app/runner/v1/_local/_local_config.py,sha256=hM7SPxR07luXPcXdrWXRpEB2uOyjSSRUdqW3QBKJn9c,3147
|
71
70
|
fractal_server/app/runner/v1/_local/_submit_setup.py,sha256=kvNPT7ey2mEamORzPMMVThbFHtzZcSr-0A9tYw9uVDA,1493
|
71
|
+
fractal_server/app/runner/v1/_local/executor.py,sha256=QrJlD77G6q4WohoJQO7XXbvi2RlCUsNvMnPDEZIoAqA,3620
|
72
72
|
fractal_server/app/runner/v1/_slurm/__init__.py,sha256=ohvDMhzOOzk1Qe1W3wY1MGxCQGRKmCleQV45EO1rVZc,10839
|
73
73
|
fractal_server/app/runner/v1/_slurm/_submit_setup.py,sha256=UoPzhxN86FeIRXJlWouulBKoguNFaOv2j_s3-9MwXCs,2732
|
74
74
|
fractal_server/app/runner/v1/_slurm/get_slurm_config.py,sha256=6TLWQon8hSicsD7c3yXK4P9xeId0s_H3HOOeMUVGVss,5977
|
75
75
|
fractal_server/app/runner/v1/common.py,sha256=_L-vjLnWato80VdlB_BFN4G8P4jSM07u-5cnl1T3S34,3294
|
76
76
|
fractal_server/app/runner/v1/handle_failed_job.py,sha256=bHzScC_aIlU3q-bQxGW6rfWV4xbZ2tho_sktjsAs1no,4684
|
77
|
-
fractal_server/app/runner/v2/__init__.py,sha256=
|
78
|
-
fractal_server/app/runner/v2/_local/__init__.py,sha256=
|
77
|
+
fractal_server/app/runner/v2/__init__.py,sha256=xHSI2eoalyEtjDcFIFJdYMZywOM0b9Tj-lkL40H77u0,12431
|
78
|
+
fractal_server/app/runner/v2/_local/__init__.py,sha256=wTXCiNRG6WkWPw79tvguOCOVvMcXt5vnVwUCrPspVss,6163
|
79
79
|
fractal_server/app/runner/v2/_local/_local_config.py,sha256=lR0Js-l63mQUzN9hK0HkfdLsrTf-W6GHvPvbPC64amY,3630
|
80
80
|
fractal_server/app/runner/v2/_local/_submit_setup.py,sha256=deagsLSy6A3ZHKaSDcQqrdvbQVM3i4kgyTcbVc0tC5U,1614
|
81
|
-
fractal_server/app/runner/v2/
|
81
|
+
fractal_server/app/runner/v2/_local/executor.py,sha256=QrJlD77G6q4WohoJQO7XXbvi2RlCUsNvMnPDEZIoAqA,3620
|
82
|
+
fractal_server/app/runner/v2/_slurm/__init__.py,sha256=CJgbawVty4gvBitIjcl2JgfE4FCnDHWCJJfNF4YjH8s,4395
|
82
83
|
fractal_server/app/runner/v2/_slurm/_submit_setup.py,sha256=3zK_GYN5ou_HFLP9N2--Nf-XUULqSWMRk1MIr2tL9-A,2847
|
83
84
|
fractal_server/app/runner/v2/_slurm/get_slurm_config.py,sha256=sqP-hs58TPt849rx10VRFKWX_DgLDPQcKZJcE0zKBXs,6621
|
84
|
-
fractal_server/app/runner/v2/
|
85
|
-
fractal_server/app/runner/v2/deduplicate_list.py,sha256=rQEwZtSibESO_Zc1-h2xvjj1yqvu9_9O_23jwB-LJ2o,758
|
85
|
+
fractal_server/app/runner/v2/deduplicate_list.py,sha256=UShgbFy8d8elUE5sa1_jLDqQWip4Bi21VDhcFFM0fpU,571
|
86
86
|
fractal_server/app/runner/v2/handle_failed_job.py,sha256=t4MjRH_7OhDMqZHP5UeZJ9_RlIJVj-F5VYtl34JBXO8,5149
|
87
|
-
fractal_server/app/runner/v2/merge_outputs.py,sha256=
|
88
|
-
fractal_server/app/runner/v2/runner.py,sha256=
|
89
|
-
fractal_server/app/runner/v2/runner_functions.py,sha256=
|
90
|
-
fractal_server/app/runner/v2/runner_functions_low_level.py,sha256=
|
87
|
+
fractal_server/app/runner/v2/merge_outputs.py,sha256=IHuHqbKmk97K35BFvTrKVBs60z3e_--OzXTnsvmA02c,1281
|
88
|
+
fractal_server/app/runner/v2/runner.py,sha256=wvfaaVnqzap0AJwihBFntLBEprh1gV88l3wQVSAPPo8,11027
|
89
|
+
fractal_server/app/runner/v2/runner_functions.py,sha256=pHGBbah0UlmN7fukmorU-AZq4WW8Aj8oSWxJwr8Woh4,10047
|
90
|
+
fractal_server/app/runner/v2/runner_functions_low_level.py,sha256=Pp3hsj1i1t4ExDMcUBkQ27yEi7kjlvymY6q6eDiC8DM,3845
|
91
91
|
fractal_server/app/runner/v2/task_interface.py,sha256=QwoTQnsBzzPzfsK6LIy-FfKRU_vItlrlJG0ViYN3D64,1243
|
92
92
|
fractal_server/app/runner/v2/v1_compat.py,sha256=dR_ukOppfc1XmInvOyKiVLdh15OSEK7ZX1l_DxYI8Sg,495
|
93
93
|
fractal_server/app/schemas/__init__.py,sha256=VL55f3CTFngXHYkOsFaLBEEkEEewEWI5ODlcGTI7cqA,157
|
@@ -105,45 +105,39 @@ fractal_server/app/schemas/v1/task.py,sha256=7BxOZ_qoRQ8n3YbQpDvB7VMcxB5fSYQmR5R
|
|
105
105
|
fractal_server/app/schemas/v1/task_collection.py,sha256=uvq9bcMaGD_qHsh7YtcpoSAkVAbw12eY4DocIO3MKOg,3057
|
106
106
|
fractal_server/app/schemas/v1/workflow.py,sha256=tuOs5E5Q_ozA8if7YPZ07cQjzqB_QMkBS4u92qo4Ro0,4618
|
107
107
|
fractal_server/app/schemas/v2/__init__.py,sha256=U3WXzQ1o26dSq3jR8n0rA-Zsq6uIpoN3oCKPOABytvA,1704
|
108
|
-
fractal_server/app/schemas/v2/dataset.py,sha256=
|
108
|
+
fractal_server/app/schemas/v2/dataset.py,sha256=ThUwme1uVhamZhlvlN0873bTDTbhTaoFanQBlgp0F5k,1839
|
109
109
|
fractal_server/app/schemas/v2/dumps.py,sha256=bEhfJrxBon1NzqS3bha16pj-59qPY_VWk_vOjsXsvAo,2047
|
110
|
-
fractal_server/app/schemas/v2/job.py,sha256=
|
111
|
-
fractal_server/app/schemas/v2/manifest.py,sha256=
|
112
|
-
fractal_server/app/schemas/v2/project.py,sha256=
|
113
|
-
fractal_server/app/schemas/v2/task.py,sha256=
|
110
|
+
fractal_server/app/schemas/v2/job.py,sha256=zfF9K3v4jWUJ7M482ta2CkqUJ4tVT4XfVt60p9IRhP0,3250
|
111
|
+
fractal_server/app/schemas/v2/manifest.py,sha256=N37IWohcfO3_y2l8rVM0h_1nZq7m4Izxk9iL1vtwBJw,6243
|
112
|
+
fractal_server/app/schemas/v2/project.py,sha256=Okm9n4KqUUs8oxFo6yIV3Y_4mJznLeKCI2ccjY0X8Vo,814
|
113
|
+
fractal_server/app/schemas/v2/task.py,sha256=vZPIsqBVM9RJDkk81EvJQQhQa-LNSh5YGdP-KM9AKgs,3607
|
114
114
|
fractal_server/app/schemas/v2/task_collection.py,sha256=Jk-r3f2RIHRAXbej9xnz_WsPrIrod1P_FIWK1iEVkes,2993
|
115
|
-
fractal_server/app/schemas/v2/workflow.py,sha256=
|
116
|
-
fractal_server/app/schemas/v2/workflowtask.py,sha256=
|
115
|
+
fractal_server/app/schemas/v2/workflow.py,sha256=KnzsuTQZ8S1wwoRDY3poWTnO3GbogFTLqCoBJNYzIFU,1831
|
116
|
+
fractal_server/app/schemas/v2/workflowtask.py,sha256=ZGtsQyefk5Z52vWrTudF0OAJ2_LTbmfY7dE1nO2v0EU,3424
|
117
117
|
fractal_server/app/security/__init__.py,sha256=wxosoHc3mJYPCdPMyWnRD8w_2OgnKYp2aDkdmwrZh5k,11203
|
118
118
|
fractal_server/config.py,sha256=CA8ASObADaME5chDiBXawAJZ3MvjTRpCKP0jvdYtSh8,15080
|
119
119
|
fractal_server/data_migrations/README.md,sha256=_3AEFvDg9YkybDqCLlFPdDmGJvr6Tw7HRI14aZ3LOIw,398
|
120
|
-
fractal_server/images/__init__.py,sha256=
|
121
|
-
fractal_server/images/
|
120
|
+
fractal_server/images/__init__.py,sha256=JnTf7TflCdTbhcMHi12s3CJhEtuAXNulwauUU1wDpp0,88
|
121
|
+
fractal_server/images/models.py,sha256=FId-e_lQNqp6rMoj2C4yO-fF0mCpjl5n-NJwum5TWns,1536
|
122
|
+
fractal_server/images/tools.py,sha256=e4sajbw9OF1JSje_UiTX6xOe-Cnx8tkQxLLcl0x3Rts,2204
|
122
123
|
fractal_server/logger.py,sha256=95duXY8eSxf1HWg0CVn8SUGNzgJw9ZR0FlapDDF6WAY,3924
|
123
124
|
fractal_server/main.py,sha256=7CpwPfCsHxBAo5fWuXPCsYOFCpbBI0F7Z0jsgCQdou8,3001
|
124
125
|
fractal_server/migrations/README,sha256=4rQvyDfqodGhpJw74VYijRmgFP49ji5chyEemWGHsuw,59
|
125
|
-
fractal_server/migrations/env.py,sha256=
|
126
|
+
fractal_server/migrations/env.py,sha256=bsl0HGZpjhommztgcs7wQ94sJzI1Orgnij97K8P_uyo,2630
|
126
127
|
fractal_server/migrations/script.py.mako,sha256=oMXw9LC3zRbinWWPPDgeZ4z9FJrV2zhRWiYdS5YgNbI,526
|
127
|
-
fractal_server/migrations/versions/4b35c5cefbe3_tmp_is_v2_compatible.py,sha256=UHvdWk81Ric8xXK7cZ6V6iIkOXGBqMSKmXyYxpjNzsY,962
|
128
128
|
fractal_server/migrations/versions/4c308bcaea2b_add_task_args_schema_and_task_args_.py,sha256=-wHe-fOffmYeAm0JXVl_lxZ7hhDkaEVqxgxpHkb_uL8,954
|
129
129
|
fractal_server/migrations/versions/4cedeb448a53_workflowtask_foreign_keys_not_nullables.py,sha256=Mob8McGYAcmgvrseyyYOa54E6Gsgr-4SiGdC-r9O4_A,1157
|
130
130
|
fractal_server/migrations/versions/50a13d6138fd_initial_schema.py,sha256=zwXegXs9J40eyCWi3w0c_iIBVJjXNn4VdVnQaT3KxDg,8770
|
131
|
-
fractal_server/migrations/versions/56af171b0159_v2.py,sha256=TPh7DPUJ1gK3MKkoNz3hdSlJ8hS4Z2xLjdYQjIh2kpA,7411
|
132
131
|
fractal_server/migrations/versions/70e77f1c38b0_add_applyworkflow_first_task_index_and_.py,sha256=Q-DsMzG3IcUV2Ol1dhJWosDvKERamBE6QvA2zzS5zpQ,1632
|
133
132
|
fractal_server/migrations/versions/71eefd1dd202_add_slurm_accounts.py,sha256=mbWuCkTpRAdGbRhW7lhXs_e5S6O37UAcCN6JfoY5H8A,1353
|
134
133
|
fractal_server/migrations/versions/84bf0fffde30_add_dumps_to_applyworkflow.py,sha256=NSCuhANChsg76vBkShBl-9tQ4VEHubOjtAv1etHhlvY,2684
|
135
|
-
fractal_server/migrations/versions/876f28db9d4e_tmp_split_task_and_wftask_meta.py,sha256=7u-Eh5OWgP5DCqNSxtfTFmI83hGdm92ZQMb4DNZtMzg,2034
|
136
134
|
fractal_server/migrations/versions/8f79bd162e35_add_docs_info_and_docs_link_to_task_.py,sha256=6pgODDtyAxevZvAJBj9IJ41inhV1RpwbpZr_qfPPu1A,1115
|
137
|
-
fractal_server/migrations/versions/974c802f0dd0_tmp_workflowtaskv2_type_in_db.py,sha256=pgO5acsxfngIDRbFsa0J5S4TIeLet0rRwpt_QPTTC0k,933
|
138
135
|
fractal_server/migrations/versions/97f444d47249_add_applyworkflow_project_dump.py,sha256=eKTZm3EgUgapXBxO0RuHkEfTKic-TZG3ADaMpGLuc0k,1057
|
139
136
|
fractal_server/migrations/versions/99ea79d9e5d2_add_dataset_history.py,sha256=0im6TxDr53sKKcjiPgeH4ftVRGnRXZSh2lPbRQ1Ir9w,883
|
140
|
-
fractal_server/migrations/versions/9cd305cd6023_tmp_workflowtaskv2.py,sha256=N8bl1RdEIMFq91-WIY8KQpursgkaoDF4nn0AJKRU5kY,1168
|
141
137
|
fractal_server/migrations/versions/9fd26a2b0de4_add_workflow_timestamp_created.py,sha256=4l1AHGUsa0ONoJVZlr3fTXw_xbbQ8O7wlD92Az2aRfM,1849
|
142
|
-
fractal_server/migrations/versions/a6231ed6273c_tmp_args_schemas_in_taskv2.py,sha256=6gaMqOERMCiL92wgMv-CUQC7Li5Hbg4GgHFa1VMwo58,1224
|
143
138
|
fractal_server/migrations/versions/a7f4d6137b53_add_workflow_dump_to_applyworkflow.py,sha256=ekDUML7ILpmdoqEclKbEUdyLi4uw9HSG_sTjG2hp_JE,867
|
144
|
-
fractal_server/migrations/versions/b9e9eed9d442_tmp_taskv2_type.py,sha256=dx-EQMVlAqU4BA0JInOlNDFUHFcpHau248QvlYiQ0Hc,893
|
145
139
|
fractal_server/migrations/versions/d4fe3708d309_make_applyworkflow_workflow_dump_non_.py,sha256=6cHEZFuTXiQg9yu32Y3RH1XAl71av141WQ6UMbiITIg,949
|
146
|
-
fractal_server/migrations/versions/
|
140
|
+
fractal_server/migrations/versions/d71e732236cd_v2.py,sha256=ayEPVYvQwq7fZF9I_8oik8Hp-6Ay_0lFRk1xCoyS6-8,8240
|
147
141
|
fractal_server/migrations/versions/e75cac726012_make_applyworkflow_start_timestamp_not_.py,sha256=lOggSvzGWqQvnxxFuSM6W50Ui49R918A-uBuiZJ0pNM,963
|
148
142
|
fractal_server/migrations/versions/efa89c30e0a4_add_project_timestamp_created.py,sha256=jilQW3QIqYQ4Q6hCnUiG7UtNMpA41ujqrB3tPFiPM1Q,1221
|
149
143
|
fractal_server/migrations/versions/f384e1c0cf5d_drop_task_default_args_columns.py,sha256=9BwqUS9Gf7UW_KjrzHbtViC880qhD452KAytkHWWZyk,746
|
@@ -156,11 +150,11 @@ fractal_server/tasks/v1/_TaskCollectPip.py,sha256=16Gn8lVYHBuwNLBHdcdx0X8s9QXXsb
|
|
156
150
|
fractal_server/tasks/v1/background_operations.py,sha256=T5L-ghgGEJIGcGoZB_r0cjH96UkEfAPkhr2ciTSaQlQ,11725
|
157
151
|
fractal_server/tasks/v1/get_collection_data.py,sha256=bi9tuApLgoKZNMIG1kR4GoKI9S6Y040gFfNQapw4ikM,502
|
158
152
|
fractal_server/tasks/v2/_TaskCollectPip.py,sha256=QeCqXDgOnMjk3diVlC5bgGEywyQjYFm5637Rke49vJY,3775
|
159
|
-
fractal_server/tasks/v2/background_operations.py,sha256=
|
153
|
+
fractal_server/tasks/v2/background_operations.py,sha256=zr6j3uoWmCeW2EA9auxWNZ0sG3SHgSxUVTC1OpQXE3Y,12803
|
160
154
|
fractal_server/tasks/v2/get_collection_data.py,sha256=Qhf2T_aaqAfqu9_KpUSlXsS7EJoZQbEPEreHHa2jco8,502
|
161
155
|
fractal_server/utils.py,sha256=b7WwFdcFZ8unyT65mloFToYuEDXpQoHRcmRNqrhd_dQ,2115
|
162
|
-
fractal_server-2.0.
|
163
|
-
fractal_server-2.0.
|
164
|
-
fractal_server-2.0.
|
165
|
-
fractal_server-2.0.
|
166
|
-
fractal_server-2.0.
|
156
|
+
fractal_server-2.0.0a2.dist-info/LICENSE,sha256=QKAharUuhxL58kSoLizKJeZE3mTCBnX6ucmz8W0lxlk,1576
|
157
|
+
fractal_server-2.0.0a2.dist-info/METADATA,sha256=2bzMcxPV8pEE5VHGflA_lM8beAmh1vqKcZCdwaayGnI,4205
|
158
|
+
fractal_server-2.0.0a2.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
|
159
|
+
fractal_server-2.0.0a2.dist-info/entry_points.txt,sha256=8tV2kynvFkjnhbtDnxAqImL6HMVKsopgGfew0DOp5UY,58
|
160
|
+
fractal_server-2.0.0a2.dist-info/RECORD,,
|
@@ -1,39 +0,0 @@
|
|
1
|
-
"""TMP - is_v2_compatible
|
2
|
-
|
3
|
-
Revision ID: 4b35c5cefbe3
|
4
|
-
Revises: 876f28db9d4e
|
5
|
-
Create Date: 2024-03-28 15:26:33.436724
|
6
|
-
|
7
|
-
"""
|
8
|
-
import sqlalchemy as sa
|
9
|
-
from alembic import op
|
10
|
-
|
11
|
-
|
12
|
-
# revision identifiers, used by Alembic.
|
13
|
-
revision = "4b35c5cefbe3"
|
14
|
-
down_revision = "876f28db9d4e"
|
15
|
-
branch_labels = None
|
16
|
-
depends_on = None
|
17
|
-
|
18
|
-
|
19
|
-
def upgrade() -> None:
|
20
|
-
# ### commands auto generated by Alembic - please adjust! ###
|
21
|
-
with op.batch_alter_table("task", schema=None) as batch_op:
|
22
|
-
batch_op.add_column(
|
23
|
-
sa.Column(
|
24
|
-
"is_v2_compatible",
|
25
|
-
sa.Boolean(),
|
26
|
-
server_default=sa.text("false"),
|
27
|
-
nullable=False,
|
28
|
-
)
|
29
|
-
)
|
30
|
-
|
31
|
-
# ### end Alembic commands ###
|
32
|
-
|
33
|
-
|
34
|
-
def downgrade() -> None:
|
35
|
-
# ### commands auto generated by Alembic - please adjust! ###
|
36
|
-
with op.batch_alter_table("task", schema=None) as batch_op:
|
37
|
-
batch_op.drop_column("is_v2_compatible")
|
38
|
-
|
39
|
-
# ### end Alembic commands ###
|
@@ -1,68 +0,0 @@
|
|
1
|
-
"""TMP - split Task and WFTask meta
|
2
|
-
|
3
|
-
Revision ID: 876f28db9d4e
|
4
|
-
Revises: b9e9eed9d442
|
5
|
-
Create Date: 2024-03-27 14:35:50.076725
|
6
|
-
|
7
|
-
"""
|
8
|
-
import sqlalchemy as sa
|
9
|
-
from alembic import op
|
10
|
-
from sqlalchemy.dialects import postgresql
|
11
|
-
|
12
|
-
# revision identifiers, used by Alembic.
|
13
|
-
revision = "876f28db9d4e"
|
14
|
-
down_revision = "b9e9eed9d442"
|
15
|
-
branch_labels = None
|
16
|
-
depends_on = None
|
17
|
-
|
18
|
-
|
19
|
-
def upgrade() -> None:
|
20
|
-
# ### commands auto generated by Alembic - please adjust! ###
|
21
|
-
with op.batch_alter_table("taskv2", schema=None) as batch_op:
|
22
|
-
batch_op.add_column(
|
23
|
-
sa.Column("meta_non_parallel", sa.JSON(), nullable=True)
|
24
|
-
)
|
25
|
-
batch_op.add_column(
|
26
|
-
sa.Column("meta_parallel", sa.JSON(), nullable=True)
|
27
|
-
)
|
28
|
-
batch_op.drop_column("meta")
|
29
|
-
|
30
|
-
with op.batch_alter_table("workflowtaskv2", schema=None) as batch_op:
|
31
|
-
batch_op.add_column(
|
32
|
-
sa.Column("meta_parallel", sa.JSON(), nullable=True)
|
33
|
-
)
|
34
|
-
batch_op.add_column(
|
35
|
-
sa.Column("meta_non_parallel", sa.JSON(), nullable=True)
|
36
|
-
)
|
37
|
-
batch_op.drop_column("meta")
|
38
|
-
|
39
|
-
# ### end Alembic commands ###
|
40
|
-
|
41
|
-
|
42
|
-
def downgrade() -> None:
|
43
|
-
# ### commands auto generated by Alembic - please adjust! ###
|
44
|
-
with op.batch_alter_table("workflowtaskv2", schema=None) as batch_op:
|
45
|
-
batch_op.add_column(
|
46
|
-
sa.Column(
|
47
|
-
"meta",
|
48
|
-
postgresql.JSON(astext_type=sa.Text()),
|
49
|
-
autoincrement=False,
|
50
|
-
nullable=True,
|
51
|
-
)
|
52
|
-
)
|
53
|
-
batch_op.drop_column("meta_non_parallel")
|
54
|
-
batch_op.drop_column("meta_parallel")
|
55
|
-
|
56
|
-
with op.batch_alter_table("taskv2", schema=None) as batch_op:
|
57
|
-
batch_op.add_column(
|
58
|
-
sa.Column(
|
59
|
-
"meta",
|
60
|
-
postgresql.JSON(astext_type=sa.Text()),
|
61
|
-
autoincrement=False,
|
62
|
-
nullable=True,
|
63
|
-
)
|
64
|
-
)
|
65
|
-
batch_op.drop_column("meta_parallel")
|
66
|
-
batch_op.drop_column("meta_non_parallel")
|
67
|
-
|
68
|
-
# ### end Alembic commands ###
|
@@ -1,37 +0,0 @@
|
|
1
|
-
"""TMP - WorkflowTaskV2.type in DB
|
2
|
-
|
3
|
-
Revision ID: 974c802f0dd0
|
4
|
-
Revises: e3e639454d4b
|
5
|
-
Create Date: 2024-04-02 11:21:20.212530
|
6
|
-
|
7
|
-
"""
|
8
|
-
import sqlalchemy as sa
|
9
|
-
import sqlmodel
|
10
|
-
from alembic import op
|
11
|
-
|
12
|
-
|
13
|
-
# revision identifiers, used by Alembic.
|
14
|
-
revision = "974c802f0dd0"
|
15
|
-
down_revision = "e3e639454d4b"
|
16
|
-
branch_labels = None
|
17
|
-
depends_on = None
|
18
|
-
|
19
|
-
|
20
|
-
def upgrade() -> None:
|
21
|
-
# ### commands auto generated by Alembic - please adjust! ###
|
22
|
-
with op.batch_alter_table("workflowtaskv2", schema=None) as batch_op:
|
23
|
-
batch_op.add_column(
|
24
|
-
sa.Column(
|
25
|
-
"task_type", sqlmodel.sql.sqltypes.AutoString(), nullable=False
|
26
|
-
)
|
27
|
-
)
|
28
|
-
|
29
|
-
# ### end Alembic commands ###
|
30
|
-
|
31
|
-
|
32
|
-
def downgrade() -> None:
|
33
|
-
# ### commands auto generated by Alembic - please adjust! ###
|
34
|
-
with op.batch_alter_table("workflowtaskv2", schema=None) as batch_op:
|
35
|
-
batch_op.drop_column("task_type")
|
36
|
-
|
37
|
-
# ### end Alembic commands ###
|
@@ -1,40 +0,0 @@
|
|
1
|
-
"""TMP - WorkflowTaskV2
|
2
|
-
|
3
|
-
Revision ID: 9cd305cd6023
|
4
|
-
Revises: a6231ed6273c
|
5
|
-
Create Date: 2024-03-26 09:15:00.188036
|
6
|
-
|
7
|
-
"""
|
8
|
-
import sqlalchemy as sa
|
9
|
-
from alembic import op
|
10
|
-
from sqlalchemy.dialects import sqlite
|
11
|
-
|
12
|
-
# revision identifiers, used by Alembic.
|
13
|
-
revision = "9cd305cd6023"
|
14
|
-
down_revision = "a6231ed6273c"
|
15
|
-
branch_labels = None
|
16
|
-
depends_on = None
|
17
|
-
|
18
|
-
|
19
|
-
def upgrade() -> None:
|
20
|
-
# ### commands auto generated by Alembic - please adjust! ###
|
21
|
-
with op.batch_alter_table("workflowtaskv2", schema=None) as batch_op:
|
22
|
-
batch_op.add_column(
|
23
|
-
sa.Column("args_parallel", sa.JSON(), nullable=True)
|
24
|
-
)
|
25
|
-
batch_op.add_column(
|
26
|
-
sa.Column("args_non_parallel", sa.JSON(), nullable=True)
|
27
|
-
)
|
28
|
-
batch_op.drop_column("args")
|
29
|
-
|
30
|
-
# ### end Alembic commands ###
|
31
|
-
|
32
|
-
|
33
|
-
def downgrade() -> None:
|
34
|
-
# ### commands auto generated by Alembic - please adjust! ###
|
35
|
-
with op.batch_alter_table("workflowtaskv2", schema=None) as batch_op:
|
36
|
-
batch_op.add_column(sa.Column("args", sqlite.JSON(), nullable=True))
|
37
|
-
batch_op.drop_column("args_non_parallel")
|
38
|
-
batch_op.drop_column("args_parallel")
|
39
|
-
|
40
|
-
# ### end Alembic commands ###
|
@@ -1,42 +0,0 @@
|
|
1
|
-
"""TMP - Args Schemas in TaskV2
|
2
|
-
|
3
|
-
Revision ID: a6231ed6273c
|
4
|
-
Revises: 56af171b0159
|
5
|
-
Create Date: 2024-03-26 08:49:51.870087
|
6
|
-
|
7
|
-
"""
|
8
|
-
import sqlalchemy as sa
|
9
|
-
from alembic import op
|
10
|
-
from sqlalchemy.dialects import sqlite
|
11
|
-
|
12
|
-
# revision identifiers, used by Alembic.
|
13
|
-
revision = "a6231ed6273c"
|
14
|
-
down_revision = "56af171b0159"
|
15
|
-
branch_labels = None
|
16
|
-
depends_on = None
|
17
|
-
|
18
|
-
|
19
|
-
def upgrade() -> None:
|
20
|
-
# ### commands auto generated by Alembic - please adjust! ###
|
21
|
-
with op.batch_alter_table("taskv2", schema=None) as batch_op:
|
22
|
-
batch_op.add_column(
|
23
|
-
sa.Column("args_schema_non_parallel", sa.JSON(), nullable=True)
|
24
|
-
)
|
25
|
-
batch_op.add_column(
|
26
|
-
sa.Column("args_schema_parallel", sa.JSON(), nullable=True)
|
27
|
-
)
|
28
|
-
batch_op.drop_column("args_schema")
|
29
|
-
|
30
|
-
# ### end Alembic commands ###
|
31
|
-
|
32
|
-
|
33
|
-
def downgrade() -> None:
|
34
|
-
# ### commands auto generated by Alembic - please adjust! ###
|
35
|
-
with op.batch_alter_table("taskv2", schema=None) as batch_op:
|
36
|
-
batch_op.add_column(
|
37
|
-
sa.Column("args_schema", sqlite.JSON(), nullable=True)
|
38
|
-
)
|
39
|
-
batch_op.drop_column("args_schema_parallel")
|
40
|
-
batch_op.drop_column("args_schema_non_parallel")
|
41
|
-
|
42
|
-
# ### end Alembic commands ###
|
@@ -1,37 +0,0 @@
|
|
1
|
-
"""TMP - TaskV2.type
|
2
|
-
|
3
|
-
Revision ID: b9e9eed9d442
|
4
|
-
Revises: 9cd305cd6023
|
5
|
-
Create Date: 2024-03-27 13:10:34.125503
|
6
|
-
|
7
|
-
"""
|
8
|
-
import sqlalchemy as sa
|
9
|
-
import sqlmodel
|
10
|
-
from alembic import op
|
11
|
-
|
12
|
-
|
13
|
-
# revision identifiers, used by Alembic.
|
14
|
-
revision = "b9e9eed9d442"
|
15
|
-
down_revision = "9cd305cd6023"
|
16
|
-
branch_labels = None
|
17
|
-
depends_on = None
|
18
|
-
|
19
|
-
|
20
|
-
def upgrade() -> None:
|
21
|
-
# ### commands auto generated by Alembic - please adjust! ###
|
22
|
-
with op.batch_alter_table("taskv2", schema=None) as batch_op:
|
23
|
-
batch_op.add_column(
|
24
|
-
sa.Column(
|
25
|
-
"type", sqlmodel.sql.sqltypes.AutoString(), nullable=False
|
26
|
-
)
|
27
|
-
)
|
28
|
-
|
29
|
-
# ### end Alembic commands ###
|
30
|
-
|
31
|
-
|
32
|
-
def downgrade() -> None:
|
33
|
-
# ### commands auto generated by Alembic - please adjust! ###
|
34
|
-
with op.batch_alter_table("taskv2", schema=None) as batch_op:
|
35
|
-
batch_op.drop_column("type")
|
36
|
-
|
37
|
-
# ### end Alembic commands ###
|
@@ -1,50 +0,0 @@
|
|
1
|
-
"""TMP - make task.meta non optional
|
2
|
-
|
3
|
-
Revision ID: e3e639454d4b
|
4
|
-
Revises: 4b35c5cefbe3
|
5
|
-
Create Date: 2024-03-29 17:10:57.643561
|
6
|
-
|
7
|
-
"""
|
8
|
-
import sqlalchemy as sa
|
9
|
-
from alembic import op
|
10
|
-
from sqlalchemy.dialects import postgresql
|
11
|
-
|
12
|
-
# revision identifiers, used by Alembic.
|
13
|
-
revision = "e3e639454d4b"
|
14
|
-
down_revision = "4b35c5cefbe3"
|
15
|
-
branch_labels = None
|
16
|
-
depends_on = None
|
17
|
-
|
18
|
-
|
19
|
-
def upgrade() -> None:
|
20
|
-
# ### commands auto generated by Alembic - please adjust! ###
|
21
|
-
with op.batch_alter_table("taskv2", schema=None) as batch_op:
|
22
|
-
batch_op.alter_column(
|
23
|
-
"meta_non_parallel",
|
24
|
-
existing_type=postgresql.JSON(astext_type=sa.Text()),
|
25
|
-
nullable=False,
|
26
|
-
)
|
27
|
-
batch_op.alter_column(
|
28
|
-
"meta_parallel",
|
29
|
-
existing_type=postgresql.JSON(astext_type=sa.Text()),
|
30
|
-
nullable=False,
|
31
|
-
)
|
32
|
-
|
33
|
-
# ### end Alembic commands ###
|
34
|
-
|
35
|
-
|
36
|
-
def downgrade() -> None:
|
37
|
-
# ### commands auto generated by Alembic - please adjust! ###
|
38
|
-
with op.batch_alter_table("taskv2", schema=None) as batch_op:
|
39
|
-
batch_op.alter_column(
|
40
|
-
"meta_parallel",
|
41
|
-
existing_type=postgresql.JSON(astext_type=sa.Text()),
|
42
|
-
nullable=True,
|
43
|
-
)
|
44
|
-
batch_op.alter_column(
|
45
|
-
"meta_non_parallel",
|
46
|
-
existing_type=postgresql.JSON(astext_type=sa.Text()),
|
47
|
-
nullable=True,
|
48
|
-
)
|
49
|
-
|
50
|
-
# ### end Alembic commands ###
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|