plain.models 0.50.0__py3-none-any.whl → 0.51.1__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.
Files changed (49) hide show
  1. plain/models/CHANGELOG.md +24 -0
  2. plain/models/README.md +26 -42
  3. plain/models/__init__.py +2 -0
  4. plain/models/backends/base/creation.py +2 -2
  5. plain/models/backends/base/introspection.py +8 -4
  6. plain/models/backends/base/schema.py +89 -71
  7. plain/models/backends/base/validation.py +1 -1
  8. plain/models/backends/mysql/compiler.py +1 -1
  9. plain/models/backends/mysql/operations.py +1 -1
  10. plain/models/backends/mysql/schema.py +4 -4
  11. plain/models/backends/postgresql/operations.py +1 -1
  12. plain/models/backends/postgresql/schema.py +3 -3
  13. plain/models/backends/sqlite3/operations.py +1 -1
  14. plain/models/backends/sqlite3/schema.py +61 -50
  15. plain/models/base.py +116 -163
  16. plain/models/cli.py +4 -4
  17. plain/models/constraints.py +14 -9
  18. plain/models/deletion.py +15 -14
  19. plain/models/expressions.py +21 -5
  20. plain/models/fields/__init__.py +20 -16
  21. plain/models/fields/json.py +3 -3
  22. plain/models/fields/related.py +73 -71
  23. plain/models/fields/related_descriptors.py +2 -2
  24. plain/models/fields/related_lookups.py +1 -1
  25. plain/models/fields/related_managers.py +21 -32
  26. plain/models/fields/reverse_related.py +8 -8
  27. plain/models/forms.py +12 -12
  28. plain/models/indexes.py +5 -4
  29. plain/models/meta.py +505 -0
  30. plain/models/migrations/operations/base.py +1 -1
  31. plain/models/migrations/operations/fields.py +6 -6
  32. plain/models/migrations/operations/models.py +18 -16
  33. plain/models/migrations/recorder.py +9 -5
  34. plain/models/migrations/state.py +35 -46
  35. plain/models/migrations/utils.py +1 -1
  36. plain/models/options.py +182 -518
  37. plain/models/preflight.py +7 -5
  38. plain/models/query.py +119 -65
  39. plain/models/query_utils.py +18 -13
  40. plain/models/registry.py +6 -5
  41. plain/models/sql/compiler.py +51 -37
  42. plain/models/sql/query.py +77 -68
  43. plain/models/sql/subqueries.py +4 -4
  44. plain/models/utils.py +4 -1
  45. {plain_models-0.50.0.dist-info → plain_models-0.51.1.dist-info}/METADATA +27 -43
  46. {plain_models-0.50.0.dist-info → plain_models-0.51.1.dist-info}/RECORD +49 -48
  47. {plain_models-0.50.0.dist-info → plain_models-0.51.1.dist-info}/WHEEL +0 -0
  48. {plain_models-0.50.0.dist-info → plain_models-0.51.1.dist-info}/entry_points.txt +0 -0
  49. {plain_models-0.50.0.dist-info → plain_models-0.51.1.dist-info}/licenses/LICENSE +0 -0
@@ -1,54 +1,55 @@
1
1
  plain/models/AGENTS.md,sha256=xQQW-z-DehnCUyjiGSBfLqUjoSUdo_W1b0JmwYmWieA,209
2
- plain/models/CHANGELOG.md,sha256=r1NPlW3-dYWdvKIFGu4HdX55rY1394rDyng6iYrs9MU,21604
3
- plain/models/README.md,sha256=lqzWJrEIxBCHC1P8X1YoRjbsMFlu0-kG4ujP76B_ZO4,8572
4
- plain/models/__init__.py,sha256=t6scDQ-bGQD3k-U_DE9K5JJ3pnmkC7ZHchFnWA-BcW8,2845
2
+ plain/models/CHANGELOG.md,sha256=Wr9ULasjvH3Shkr1jN75_KeNkRd_ZR8gCzR63-TWvps,23160
3
+ plain/models/README.md,sha256=BW4a56bKkf2r-fkfK4SIU92th8h1geBNZ6j-XCv9yE4,8190
4
+ plain/models/__init__.py,sha256=S0HNxIS4PQ0mSNpo3PNOXExVnHXFmODQvdPhTCVrW-E,2903
5
5
  plain/models/aggregates.py,sha256=z6AjlPlMI-henws9DYPwylL91sfrBPPHR7f9MNb2cjw,8043
6
- plain/models/base.py,sha256=9gkiq2OKfae8CzgMQ54GH9tquQ_kvSc9VYW3SfPUXQI,66231
7
- plain/models/cli.py,sha256=imGNKDJWpkJCbMb8c9NYHzD52u6imiWV0LIBgSJIFxU,40993
6
+ plain/models/base.py,sha256=uB1OHfyd9hDDqEHck481MCUeXsiwuYmyM7lkS2uQ7ts,64448
7
+ plain/models/cli.py,sha256=cI323H4xEKLl1Q62zZQtl_UZBfuE6JMXsq5kSr7Ai0c,41031
8
8
  plain/models/config.py,sha256=vrrGZnmT0TCR_B-YF0VWZgG3iQ5syijaab2BW7Xfr7A,390
9
9
  plain/models/connections.py,sha256=8DVH6Rl47wbfY_4wO6bGSoTuyJKoKz3tMB8fpe1cpqE,2937
10
10
  plain/models/constants.py,sha256=ndnj9TOTKW0p4YcIPLOLEbsH6mOgFi6B1-rIzr_iwwU,210
11
- plain/models/constraints.py,sha256=2If4pVG2VCAQLGVJPz2UIORGlHXsgsB78MI5co-yx1I,17877
11
+ plain/models/constraints.py,sha256=0MIeA5pL7wutLpSxKM1Nq1GZjK6-WQf0lHcyA4tt-0A,17997
12
12
  plain/models/database_url.py,sha256=frDkiFi2eba8bGiI4J6rNQqu_YJgk58rjGCBCfrsWBE,6424
13
13
  plain/models/db.py,sha256=TzjE3AwEHda53s133h4WE4DCm08LUxseGEniP3lnrXc,1434
14
14
  plain/models/default_settings.py,sha256=cDym1o_DtHySWgDRIdjgEM0YxjgYU51ZqzWVA3vpzTk,569
15
- plain/models/deletion.py,sha256=bPtjcfLMwBcDa7D4XnMtXqNqn00w8uss-2Sq0PdyhL0,18975
15
+ plain/models/deletion.py,sha256=xQ1X_2W45h0L16R-8HAYceb0q4XhEidY6lCRPi8vvJ0,19083
16
16
  plain/models/entrypoints.py,sha256=8IyQlCia0c9ZZaWHOA9FrqmN0iG_z9EeFoqEZifsdH4,199
17
17
  plain/models/enums.py,sha256=IOqdywY_TNNJIDp-reaRlbTL-1uVw3jwQ4NpVT8yjDs,3049
18
18
  plain/models/exceptions.py,sha256=DOnRGvbEHEUDr3ioafhK1rSBnMeJ_Q4VW7gZXEIj7SU,5492
19
- plain/models/expressions.py,sha256=5Is-YAOX_qAEIZfgDNH_tg3ex9iWgzvcGabqgl9DGHU,70757
20
- plain/models/forms.py,sha256=DofW4GFuuuWdHpZ7UYWsCdlKEBGqbkn71mllCF2O-Pw,27378
21
- plain/models/indexes.py,sha256=Ae4EsU6WfVHuWoLMkkXPI7n709GiszeM4pkcDWlRl-E,12723
19
+ plain/models/expressions.py,sha256=5Bf8V0wMMVzLueDEpTH5f_8skRspq6nNYi5y1S3fNAo,71223
20
+ plain/models/forms.py,sha256=dkX3or5TROgKAzkLayek63pngYrcIYdijZQS0LcYhhI,27428
21
+ plain/models/indexes.py,sha256=fiQ1F-zDVJPSSGb_zaH4Kj1H_dBkMpXM2znHWA2KLjk,12761
22
22
  plain/models/lookups.py,sha256=A-3rs3a2Obb-gQPs5RsQiCq-Shj21tznk2LwOeD4RXs,29447
23
- plain/models/options.py,sha256=hJlo_w5Nna7LgaXHWaS-ypYhul4KvrUq1WNUwxWu-GI,22042
23
+ plain/models/meta.py,sha256=alEKxzgwxmCRddq9Wonl1bjglDk1-x3CtEwWL3cGy6A,19942
24
+ plain/models/options.py,sha256=gTso-rRXxV6qbuAprsA1qflkQfsRqmcoETEQJmP0dGk,8593
24
25
  plain/models/otel.py,sha256=6xsu5BhNhGXWRPNQVj0yzhsn1SryOhtCq_qzP8XL-qo,8010
25
- plain/models/preflight.py,sha256=DFWhmL7uVqlBIM1SpL9EeRQq8BVfhs7pgs-Kyuq751g,9740
26
- plain/models/query.py,sha256=Av17UJcG7DMdvrSXKBKK2a_YxQ6IvPg6A0K3VCO8Njo,97301
27
- plain/models/query_utils.py,sha256=7hxC6JcnOjREw9kxTHs3YZOnxc2DGd8XAE019ncMEWY,16025
28
- plain/models/registry.py,sha256=pypfpHkdcJ_XZs2j6SJMHbAp-IA6-_N7gSUJmDbdDwo,8824
26
+ plain/models/preflight.py,sha256=VIiNdWady7uHAEB_XT4_Vkt4M--vGVYL7QEdNMW8Tko,9818
27
+ plain/models/query.py,sha256=-ZDJlt7aM5d3Sms_1Eu53h1UGnQvtKinFIhhLBgnfkY,98481
28
+ plain/models/query_utils.py,sha256=m_3FCbFZJjqkN6tcDuLrgA2n63RxUHOaXb_bJyQsS9k,16171
29
+ plain/models/registry.py,sha256=dIsgZolh7senbPil6xW_qLFIeIXkCtzysPcrpWdGAAY,8903
29
30
  plain/models/transaction.py,sha256=beJtENs6l8Djrrap59k8K-O5qWhX1Y6WL5X9Ung5tDk,9791
30
- plain/models/utils.py,sha256=BQqS7mG64tnBxfYa_h51P-KRiippHDRHRHT8ZJKpznw,1965
31
+ plain/models/utils.py,sha256=VA5N2Ao1dWDkgfPIPtgriSUM-aBArYfvtQm-c-Y3AHg,2030
31
32
  plain/models/backends/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
32
33
  plain/models/backends/ddl_references.py,sha256=tW_4SFxKH1d_1UQiHL4OsZB11puFUJsMhRgG3XeWiQE,9401
33
34
  plain/models/backends/utils.py,sha256=wn4U_qrzGQxecJtcXS5VFds2Tg6VoJrs1TB_l8LN9AE,11102
34
35
  plain/models/backends/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
35
36
  plain/models/backends/base/base.py,sha256=465KAc8J2R8eIy3NmJSnrgMPK0K2DwDsylGKEzUkpsI,29099
36
37
  plain/models/backends/base/client.py,sha256=xuMk4iXQjDju5cUspmOSpv6w2JnsB-gJa3RDvoP5I9I,1230
37
- plain/models/backends/base/creation.py,sha256=HnShxWWkHQ7XgEhgUK9Kyap7W_itO98NM5TK16B13l0,9851
38
+ plain/models/backends/base/creation.py,sha256=A3cBPzxjmzEUIrsiuxoI4M3mi-Y9sGcVHoCa-TpQRtM,9857
38
39
  plain/models/backends/base/features.py,sha256=iRfB346Z9Ng3LIMvJAwr-8KxQthlSuvcdo9zBklE1-8,8067
39
- plain/models/backends/base/introspection.py,sha256=z80jLSGOr1LysUF8dNNy2wufRaJHBlL25ITMx1qzQZo,7498
40
+ plain/models/backends/base/introspection.py,sha256=3yeluBm6UHOlKikgVzGlKnDqBhyaqP-1FoSO4y_c-Hc,7613
40
41
  plain/models/backends/base/operations.py,sha256=8m5XDZ5LtALaXbUX10QPSGDFKce17V5UeJDMkbSZdCs,29324
41
- plain/models/backends/base/schema.py,sha256=AwLiAjuVG_IGHhBwE7TixbrsUz59wXI5yiX2Bprr0b8,70102
42
- plain/models/backends/base/validation.py,sha256=Ye2U73rp-g83YiaDHswwbGk6p8pob86106T8PgYPKWY,1333
42
+ plain/models/backends/base/schema.py,sha256=t5U45noXOGxQkadh-EBz7BLIdPDg-uai3qUxXYHAkiU,70546
43
+ plain/models/backends/base/validation.py,sha256=Ok-TbVVi84zdPprKI--tUxYgoDl2PaxfNDiuYqZQBLM,1341
43
44
  plain/models/backends/mysql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
44
45
  plain/models/backends/mysql/base.py,sha256=6yNw8m4LpnNOOBVGzGZDPZGDAZKDnDbAWBO62Xg4yJY,14786
45
46
  plain/models/backends/mysql/client.py,sha256=FLp8Ub-fh4mto9nI1ULkGe4LnphGqAig2D_YrUk7Ums,3135
46
- plain/models/backends/mysql/compiler.py,sha256=fopqAvI4TtD7xA0r5CG8ngIg-PjlNc_eGx889xHvMg0,3603
47
+ plain/models/backends/mysql/compiler.py,sha256=Hw3Uu9GPoKEn09cJaZgWAVSisltsLMKtKXbSC-8aWJM,3609
47
48
  plain/models/backends/mysql/creation.py,sha256=W-YOIbvxcEgrcpDJBOF1fHW_ZxDX-MbwGlahOi8d9tI,1047
48
49
  plain/models/backends/mysql/features.py,sha256=76lBs9-unIKYEpH7fLdhihg9lPWrehQR26GW4zPKy1U,6101
49
50
  plain/models/backends/mysql/introspection.py,sha256=ZbJRlx-XHMVl3Mml53_kSnWekGIqA7PIB_1ZTOJuNHs,14405
50
- plain/models/backends/mysql/operations.py,sha256=aSRuTmbo9dqS_a3CPavYQjbASJMGH8Ggxd_TyWHOLVQ,18822
51
- plain/models/backends/mysql/schema.py,sha256=xcqSbieYhjzCOQMBGl_TsCMWvMhwQSvGvvl6eFqkLMM,10882
51
+ plain/models/backends/mysql/operations.py,sha256=pe2Q2fVUNNXYCx4RM85ztpCUI5XNuhDtoc7tngMxgO4,18830
52
+ plain/models/backends/mysql/schema.py,sha256=tHbtQ9ttBo36IsWpolBmiQKoFLIEBfQdRBIw66Hyr_8,10912
52
53
  plain/models/backends/mysql/validation.py,sha256=g9nifha-LPtK_cpBscgLGt7eaMNdcI90Bqy5cyJbbhc,2210
53
54
  plain/models/backends/postgresql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
54
55
  plain/models/backends/postgresql/base.py,sha256=DOFq3I4azbO2X62FSwKqrpSnavfFtSMHPf3Lmgpgq2c,16784
@@ -56,8 +57,8 @@ plain/models/backends/postgresql/client.py,sha256=eVEUdM8Gt8YQQzSBtsi8RpzruDfndk
56
57
  plain/models/backends/postgresql/creation.py,sha256=sdEK7IjlEbBCjtsGr1s2i4MeZibBuc7eb0OMeL305u8,1743
57
58
  plain/models/backends/postgresql/features.py,sha256=O8iWfAjqyOX7DhjZaGJvyO-vmWcrkDopFnG2bHEQK44,1322
58
59
  plain/models/backends/postgresql/introspection.py,sha256=iRmVhVKZ2-fGvM-w2ZGsXRYq44Vd29-tsd949uAoOwQ,11490
59
- plain/models/backends/postgresql/operations.py,sha256=c_4nj-yzzsP-4SOBsMF2WUScdBTwrOVBjOwOQs5FeJg,13539
60
- plain/models/backends/postgresql/schema.py,sha256=xIWaiVBn1xJ9tFkRYq4fmkp6zuKfQ6on07JaEmiV65E,15110
60
+ plain/models/backends/postgresql/operations.py,sha256=bP_H4aNAGzWYn3Ezjm8g_FaA9m6zPtJ2OM8ePCMN658,13547
61
+ plain/models/backends/postgresql/schema.py,sha256=sb_gGwgL4d7G4Gi72ty2kwgzg4CXE8SXse7mrsq1HEA,15134
61
62
  plain/models/backends/sqlite3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
62
63
  plain/models/backends/sqlite3/_functions.py,sha256=yrCAOhWPs7WB5I1kTU8EmaFdXlHGBbHYVhClCKt4Iyo,17950
63
64
  plain/models/backends/sqlite3/base.py,sha256=MMQkUV3qEI9b_-yuYxZTvXDEB8Sfie9pMC_b8mNWYx8,13976
@@ -65,20 +66,20 @@ plain/models/backends/sqlite3/client.py,sha256=IjHu8dTEoYCfDmFNjM7-EKzH4yLm3OO5z
65
66
  plain/models/backends/sqlite3/creation.py,sha256=w2ojwbwn4u0f2EDCIsOcH3giJh9bIvJvV-vh98PQk28,2939
66
67
  plain/models/backends/sqlite3/features.py,sha256=WNN4DM_SP18cI4dw1aTiT0owSLzsXp3s4hj5Em46G6E,2426
67
68
  plain/models/backends/sqlite3/introspection.py,sha256=pFGYcamhB2_aaYMMR441gK8pt2spmycD_IBeIq4kGvw,17820
68
- plain/models/backends/sqlite3/operations.py,sha256=lHkih35USXFyZfxFdUzmO3dwY1Az3BwWxpcrtxXLOyc,18005
69
- plain/models/backends/sqlite3/schema.py,sha256=NilXuHi9_6WLlC98UBGEcZlCPv8HYIhOtJezWNiFGCc,24402
69
+ plain/models/backends/sqlite3/operations.py,sha256=CY8LzKP23ZR8UxNQPJL3cScE_52l4ZxbmslKbcfk4BU,18013
70
+ plain/models/backends/sqlite3/schema.py,sha256=MEajKYZ-l6aLCJRffwj-2FcCZpnBEy6SBQoa1r8YRoU,24493
70
71
  plain/models/backups/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
71
72
  plain/models/backups/cli.py,sha256=nXM_u6W0GBFmiVmlommLDKY9ig0-y6a2lheJVq3Ugg0,3075
72
73
  plain/models/backups/clients.py,sha256=YOafOXgekihIG7fOZjYBEjm7QwOMWeh_sCNOxv3M9FQ,5092
73
74
  plain/models/backups/core.py,sha256=5J7kNnlVUX_Fo0SZYheIjfRG4L9Q-EjGRKsv7HXUwrs,3830
74
- plain/models/fields/__init__.py,sha256=kKHgiwKho8lL14jOuV3KUCODaIaZXypCn8GF5bj7rgQ,78056
75
- plain/models/fields/json.py,sha256=1feWarC1hxj13Jbl5pJK9zRVM4oRv7jzWA9SSzGGZLk,21147
75
+ plain/models/fields/__init__.py,sha256=g3XHXvMBnYEpXdQhrh2aPs6hE-tA921At7bC9cI77SQ,78326
76
+ plain/models/fields/json.py,sha256=8Iaj9akacZaEoPr8QlDz3-zZb3YOoCEzcyyUr0B-uOA,21171
76
77
  plain/models/fields/mixins.py,sha256=bCpWNliBntAl6W9Vxhpu-JyCBM8XIRQBiSJKIyaQM4Q,2141
77
- plain/models/fields/related.py,sha256=G1JCq01v0KkOtmy8WzSb2aWrzAjzIQ4Uc8SrfnAQd8U,57962
78
- plain/models/fields/related_descriptors.py,sha256=tO74Km-Ia8HhEuuw1LiFxuL1s-gVVdGiJU6Y5gmm3K0,15741
79
- plain/models/fields/related_lookups.py,sha256=IiWuh2VQOF9QIS107egE9Rvv42USLa3x9j-JUXN5lng,8411
80
- plain/models/fields/related_managers.py,sha256=ucNORVv7kEM1fIbQabmA02I58YlyfPYXvB1JChcAXvs,26623
81
- plain/models/fields/reverse_related.py,sha256=u25elT70CroUWtZH9OX8HTGnhaYsF9CEL-nzEjuftJ4,11047
78
+ plain/models/fields/related.py,sha256=neXQaxP-TvT90BAL6Iyw-7KvIcXps2oUI4XxSqDONGs,57513
79
+ plain/models/fields/related_descriptors.py,sha256=OM31k33zCE5eZzHbSPbUFKHa4HWFPaYJukqiAsJw_sc,15763
80
+ plain/models/fields/related_lookups.py,sha256=U3FP9dXTnUZz-Sb8yRf0m923Teebg6PbUkYk7sB-NFs,8417
81
+ plain/models/fields/related_managers.py,sha256=gQO9FbwArVMS2ulM24Lpf2pP4vxeRlS73DlgTz-nJ6A,25970
82
+ plain/models/fields/reverse_related.py,sha256=sP9cYp6hBNcxLZyZdtcuPtVMBEWYD2GgkHdCnn87zOQ,11093
82
83
  plain/models/functions/__init__.py,sha256=aglCm_JtzDYk2KmxubDN_78CGG3JCfRWnfJ74Oj5YJ4,2658
83
84
  plain/models/functions/comparison.py,sha256=4W_mtlqy5LO2-rbikiQw64-kfL_6dwqck1Mze4b5srM,7900
84
85
  plain/models/functions/datetime.py,sha256=SxGkBExwfH98f7D5Tcj23nmPRtKT_z2oyZ3WbXYtqhQ,14624
@@ -95,28 +96,28 @@ plain/models/migrations/loader.py,sha256=PzbEL_9XxU3XcQAb5O9mH22nuBjvJhr_bkOkYJf
95
96
  plain/models/migrations/migration.py,sha256=2lLS9XFPPktpwhCUWcWx6eFkPHZQE_KYnIMRSm0CvWo,6896
96
97
  plain/models/migrations/optimizer.py,sha256=Kk8-KBB51mYiR96hp8F7ZhFvdVg7DYyujpKmp8b9T6A,3385
97
98
  plain/models/migrations/questioner.py,sha256=1uhQqPooxAaJuXe_W_B9X5df8MOoO_G7IFcubQxd6lE,12980
98
- plain/models/migrations/recorder.py,sha256=F4ETwwyMkGDKxDJkML48lMs9_Wy1YAMaa4cht4Fq0eI,4019
99
+ plain/models/migrations/recorder.py,sha256=4rxOUmwJRkyKt5WVTQtnfsXnesV5Ue--1MpXYFltbto,4175
99
100
  plain/models/migrations/serializer.py,sha256=QWz5PvDSWKgHjae1McEIPwahQTm17ZES2Kf6aVebrr0,13410
100
- plain/models/migrations/state.py,sha256=h5K0WShT15llNZ-YKtrgtwWYvsf1hMdAoOmZyDlVLw0,36911
101
- plain/models/migrations/utils.py,sha256=XfIT_mXhSmgfEYEwTW0DSbFsr-JtR1aoZlCw1x-3erE,4780
101
+ plain/models/migrations/state.py,sha256=3wmARJZ8XgCnkW-xvg2r2VWrhl1GoLRQmBFIh2EFa3w,35795
102
+ plain/models/migrations/utils.py,sha256=MkrO_ZHCLQVlhgJPVxIlkZ7tqpQ_BDa6i07T-OCORnE,4796
102
103
  plain/models/migrations/writer.py,sha256=poEW487rmFJIarJB03jImxtd1Yfcy4JvkMwYCVBrUTs,11227
103
104
  plain/models/migrations/operations/__init__.py,sha256=YKZsQsJ4G5iw9F4o6dOSgSCuLiiKuApvneoV4jqjZaA,752
104
- plain/models/migrations/operations/base.py,sha256=BQOPMAqwwUQQlTmqgbPTOoftr41tUsbJ1JnNg8Js0cI,5211
105
- plain/models/migrations/operations/fields.py,sha256=mQlzy_aGQpfVjlOS4_byAot5C3zvt6j3eHgF--Q89YI,12958
106
- plain/models/migrations/operations/models.py,sha256=lJses1Gjqgc8RH4ro_mtdzVfy9eH3AWZcQZeI2BHrVE,29920
105
+ plain/models/migrations/operations/base.py,sha256=jtHhl0CWC2-yMwwVTBSf4rvLbwdJ-SBXmqX9mCUvsmI,5219
106
+ plain/models/migrations/operations/fields.py,sha256=zMLWnDPNmeXNZ1P1X6bqu3NIaSk9AffrenLJxcI3UCo,12994
107
+ plain/models/migrations/operations/models.py,sha256=mmk1Kjp1JcgyVJ1kcqtxig_OFsd-VvahwrJP-iQ_5DY,29665
107
108
  plain/models/migrations/operations/special.py,sha256=9Gu0PLRALDVcc-4erJxnkT5saO8FH6Emm1W5X7hfNnQ,6612
108
109
  plain/models/sql/__init__.py,sha256=FoRCcab-kh_XY8C4eldgLy9-zuk-M63Nyi9cFsYjclU,225
109
- plain/models/sql/compiler.py,sha256=uecIJhjvPTbEa5gzB2QWLm5FfOyiPsd42Y-oq2jyuN4,87736
110
+ plain/models/sql/compiler.py,sha256=UVXqw7ztoCF16s2r-Uh-Syc20JDg3oBl9tQslS7lCaA,88204
110
111
  plain/models/sql/constants.py,sha256=usb1LSh9WNGPsurWAGppDkV0wYJJg5GEegKibQdS718,533
111
112
  plain/models/sql/datastructures.py,sha256=xYLGQgLIgDxo7xNlMFuTQJ5l40MvSRY4zvZuWpFf0L8,7840
112
- plain/models/sql/query.py,sha256=bbGMvvkyy4yApWE97nnCt4HcxDCqZGJTDcxtEFATIIM,114231
113
- plain/models/sql/subqueries.py,sha256=4fir_fm3DaQaL-cdZKTeTc2XkhUJWOfQSP0O2s1c2tY,6495
113
+ plain/models/sql/query.py,sha256=USDXTUHIRt3pUEn7m1RsUGuyTambRoOuqaW3RgP26Xo,114440
114
+ plain/models/sql/subqueries.py,sha256=p8XQkWLct31HUu4scLt0LrEo2MLYr1mTW5KiugKbVac,6522
114
115
  plain/models/sql/where.py,sha256=GeTopzVmvZTqm2NTS32ok0rHbNgoEREUVtsD7usrlCA,13802
115
116
  plain/models/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
116
117
  plain/models/test/pytest.py,sha256=sZtHzmNoqIFb7csZ8fqbRwljQ0vWrcMcDm6Wk_0g-uk,3924
117
118
  plain/models/test/utils.py,sha256=eduH039cMVixWORfsUr7qkk0YDkTHPXFZklm9lzY474,540
118
- plain_models-0.50.0.dist-info/METADATA,sha256=AqXXj6-vvXswuCVJZ7wVmVB7T_aMS5f3WTC6zKsMjoc,8884
119
- plain_models-0.50.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
120
- plain_models-0.50.0.dist-info/entry_points.txt,sha256=IYJAW9MpL3PXyXFWmKmALagAGXC_5rzBn2eEGJlcV04,112
121
- plain_models-0.50.0.dist-info/licenses/LICENSE,sha256=m0D5O7QoH9l5Vz_rrX_9r-C8d9UNr_ciK6Qwac7o6yo,3175
122
- plain_models-0.50.0.dist-info/RECORD,,
119
+ plain_models-0.51.1.dist-info/METADATA,sha256=KnNRGQxkypz9IZdzymjZYxCqAeKAfnNJfI7bU886uRc,8502
120
+ plain_models-0.51.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
121
+ plain_models-0.51.1.dist-info/entry_points.txt,sha256=IYJAW9MpL3PXyXFWmKmALagAGXC_5rzBn2eEGJlcV04,112
122
+ plain_models-0.51.1.dist-info/licenses/LICENSE,sha256=m0D5O7QoH9l5Vz_rrX_9r-C8d9UNr_ciK6Qwac7o6yo,3175
123
+ plain_models-0.51.1.dist-info/RECORD,,