masonite-orm 3.0.0.post1__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 (116) hide show
  1. masonite_orm-3.0.0.post1.dist-info/METADATA +88 -0
  2. masonite_orm-3.0.0.post1.dist-info/RECORD +116 -0
  3. masonite_orm-3.0.0.post1.dist-info/WHEEL +5 -0
  4. masonite_orm-3.0.0.post1.dist-info/entry_points.txt +2 -0
  5. masonite_orm-3.0.0.post1.dist-info/licenses/LICENSE +21 -0
  6. masonite_orm-3.0.0.post1.dist-info/top_level.txt +1 -0
  7. masoniteorm/__init__.py +12 -0
  8. masoniteorm/collection/Collection.py +605 -0
  9. masoniteorm/collection/__init__.py +1 -0
  10. masoniteorm/commands/CanOverrideConfig.py +16 -0
  11. masoniteorm/commands/CanOverrideOptionsDefault.py +22 -0
  12. masoniteorm/commands/Command.py +6 -0
  13. masoniteorm/commands/Entry.py +43 -0
  14. masoniteorm/commands/MakeMigrationCommand.py +57 -0
  15. masoniteorm/commands/MakeModelCommand.py +78 -0
  16. masoniteorm/commands/MakeModelDocstringCommand.py +37 -0
  17. masoniteorm/commands/MakeObserverCommand.py +54 -0
  18. masoniteorm/commands/MakeSeedCommand.py +54 -0
  19. masoniteorm/commands/MigrateCommand.py +46 -0
  20. masoniteorm/commands/MigrateFreshCommand.py +41 -0
  21. masoniteorm/commands/MigrateRefreshCommand.py +41 -0
  22. masoniteorm/commands/MigrateResetCommand.py +25 -0
  23. masoniteorm/commands/MigrateRollbackCommand.py +26 -0
  24. masoniteorm/commands/MigrateStatusCommand.py +51 -0
  25. masoniteorm/commands/SeedRunCommand.py +35 -0
  26. masoniteorm/commands/ShellCommand.py +205 -0
  27. masoniteorm/commands/__init__.py +18 -0
  28. masoniteorm/commands/stubs/create_migration.stub +20 -0
  29. masoniteorm/commands/stubs/create_seed.stub +9 -0
  30. masoniteorm/commands/stubs/model.stub +9 -0
  31. masoniteorm/commands/stubs/observer.stub +101 -0
  32. masoniteorm/commands/stubs/table_migration.stub +19 -0
  33. masoniteorm/config.py +123 -0
  34. masoniteorm/connections/BaseConnection.py +101 -0
  35. masoniteorm/connections/ConnectionFactory.py +59 -0
  36. masoniteorm/connections/ConnectionResolver.py +132 -0
  37. masoniteorm/connections/MSSQLConnection.py +176 -0
  38. masoniteorm/connections/MySQLConnection.py +232 -0
  39. masoniteorm/connections/PostgresConnection.py +225 -0
  40. masoniteorm/connections/SQLiteConnection.py +179 -0
  41. masoniteorm/connections/__init__.py +6 -0
  42. masoniteorm/exceptions.py +38 -0
  43. masoniteorm/expressions/__init__.py +1 -0
  44. masoniteorm/expressions/expressions.py +288 -0
  45. masoniteorm/factories/Factory.py +112 -0
  46. masoniteorm/factories/__init__.py +1 -0
  47. masoniteorm/helpers/__init__.py +0 -0
  48. masoniteorm/helpers/misc.py +22 -0
  49. masoniteorm/migrations/Migration.py +330 -0
  50. masoniteorm/migrations/__init__.py +1 -0
  51. masoniteorm/models/MigrationModel.py +9 -0
  52. masoniteorm/models/Model.py +1209 -0
  53. masoniteorm/models/Model.pyi +1366 -0
  54. masoniteorm/models/Pivot.py +5 -0
  55. masoniteorm/models/__init__.py +1 -0
  56. masoniteorm/observers/ObservesEvents.py +27 -0
  57. masoniteorm/observers/__init__.py +1 -0
  58. masoniteorm/pagination/BasePaginator.py +10 -0
  59. masoniteorm/pagination/LengthAwarePaginator.py +34 -0
  60. masoniteorm/pagination/SimplePaginator.py +28 -0
  61. masoniteorm/pagination/__init__.py +2 -0
  62. masoniteorm/providers/ORMProvider.py +39 -0
  63. masoniteorm/providers/__init__.py +1 -0
  64. masoniteorm/query/EagerRelation.py +42 -0
  65. masoniteorm/query/QueryBuilder.py +2486 -0
  66. masoniteorm/query/__init__.py +1 -0
  67. masoniteorm/query/grammars/BaseGrammar.py +1027 -0
  68. masoniteorm/query/grammars/MSSQLGrammar.py +194 -0
  69. masoniteorm/query/grammars/MySQLGrammar.py +238 -0
  70. masoniteorm/query/grammars/PostgresGrammar.py +213 -0
  71. masoniteorm/query/grammars/SQLiteGrammar.py +228 -0
  72. masoniteorm/query/grammars/__init__.py +4 -0
  73. masoniteorm/query/processors/MSSQLPostProcessor.py +58 -0
  74. masoniteorm/query/processors/MySQLPostProcessor.py +48 -0
  75. masoniteorm/query/processors/PostgresPostProcessor.py +49 -0
  76. masoniteorm/query/processors/SQLitePostProcessor.py +49 -0
  77. masoniteorm/query/processors/__init__.py +4 -0
  78. masoniteorm/relationships/BaseRelationship.py +161 -0
  79. masoniteorm/relationships/BelongsTo.py +124 -0
  80. masoniteorm/relationships/BelongsToMany.py +604 -0
  81. masoniteorm/relationships/HasMany.py +66 -0
  82. masoniteorm/relationships/HasManyThrough.py +269 -0
  83. masoniteorm/relationships/HasOne.py +111 -0
  84. masoniteorm/relationships/HasOneThrough.py +275 -0
  85. masoniteorm/relationships/MorphMany.py +152 -0
  86. masoniteorm/relationships/MorphOne.py +156 -0
  87. masoniteorm/relationships/MorphTo.py +111 -0
  88. masoniteorm/relationships/MorphToMany.py +108 -0
  89. masoniteorm/relationships/__init__.py +10 -0
  90. masoniteorm/schema/Blueprint.py +1161 -0
  91. masoniteorm/schema/Column.py +144 -0
  92. masoniteorm/schema/ColumnDiff.py +0 -0
  93. masoniteorm/schema/Constraint.py +5 -0
  94. masoniteorm/schema/ForeignKeyConstraint.py +28 -0
  95. masoniteorm/schema/Index.py +5 -0
  96. masoniteorm/schema/Schema.py +359 -0
  97. masoniteorm/schema/Table.py +94 -0
  98. masoniteorm/schema/TableDiff.py +86 -0
  99. masoniteorm/schema/__init__.py +3 -0
  100. masoniteorm/schema/platforms/MSSQLPlatform.py +367 -0
  101. masoniteorm/schema/platforms/MySQLPlatform.py +513 -0
  102. masoniteorm/schema/platforms/Platform.py +97 -0
  103. masoniteorm/schema/platforms/PostgresPlatform.py +551 -0
  104. masoniteorm/schema/platforms/SQLitePlatform.py +481 -0
  105. masoniteorm/schema/platforms/__init__.py +4 -0
  106. masoniteorm/scopes/BaseScope.py +6 -0
  107. masoniteorm/scopes/SoftDeleteScope.py +56 -0
  108. masoniteorm/scopes/SoftDeletesMixin.py +13 -0
  109. masoniteorm/scopes/TimeStampsMixin.py +12 -0
  110. masoniteorm/scopes/TimeStampsScope.py +47 -0
  111. masoniteorm/scopes/UUIDPrimaryKeyMixin.py +8 -0
  112. masoniteorm/scopes/UUIDPrimaryKeyScope.py +51 -0
  113. masoniteorm/scopes/__init__.py +8 -0
  114. masoniteorm/scopes/scope.py +15 -0
  115. masoniteorm/seeds/Seeder.py +42 -0
  116. masoniteorm/seeds/__init__.py +1 -0
@@ -0,0 +1,88 @@
1
+ Metadata-Version: 2.4
2
+ Name: masonite-orm
3
+ Version: 3.0.0.post1
4
+ Summary: The Official Masonite ORM
5
+ Home-page: https://github.com/masoniteframework/orm
6
+ Author: Joe Mancuso
7
+ Author-email: joe@masoniteproject.com
8
+ License: MIT
9
+ Keywords: Masonite,MasoniteFramework,Python,ORM
10
+ Classifier: Development Status :: 7 - Inactive
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: Topic :: Software Development :: Build Tools
13
+ Classifier: Environment :: Web Environment
14
+ Classifier: License :: OSI Approved :: MIT License
15
+ Classifier: Operating System :: OS Independent
16
+ Classifier: Programming Language :: Python :: 3.8
17
+ Classifier: Programming Language :: Python :: 3.9
18
+ Classifier: Programming Language :: Python :: 3.10
19
+ Classifier: Programming Language :: Python :: 3.11
20
+ Classifier: Programming Language :: Python :: 3.12
21
+ Classifier: Programming Language :: Python :: 3.13
22
+ Classifier: Framework :: Masonite
23
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
24
+ Classifier: Framework :: Masonite
25
+ Description-Content-Type: text/markdown
26
+ License-File: LICENSE
27
+ Requires-Dist: inflection<0.6,>=0.3
28
+ Requires-Dist: pendulum<4.0,>=3.0
29
+ Requires-Dist: cleo<2.0,>=0.8.0
30
+ Provides-Extra: test
31
+ Requires-Dist: coverage; extra == "test"
32
+ Requires-Dist: pytest; extra == "test"
33
+ Requires-Dist: faker; extra == "test"
34
+ Provides-Extra: seeder
35
+ Requires-Dist: faker; extra == "seeder"
36
+ Dynamic: author
37
+ Dynamic: author-email
38
+ Dynamic: classifier
39
+ Dynamic: description
40
+ Dynamic: description-content-type
41
+ Dynamic: home-page
42
+ Dynamic: keywords
43
+ Dynamic: license
44
+ Dynamic: license-file
45
+ Dynamic: provides-extra
46
+ Dynamic: requires-dist
47
+ Dynamic: summary
48
+
49
+ # ⚠️ This repository is no longer maintained
50
+
51
+ > **Masonite ORM development continues at [masonitedev/orm](https://github.com/masonitedev/orm).**
52
+ > It is published on PyPI as [**`masonite-framework-orm`**](https://pypi.org/project/masonite-framework-orm/) — imports are unchanged (`from masoniteorm...`).
53
+ > This repository covers `masonite-orm` ≤ 3.0.0, which will receive **no further updates** (including security fixes).
54
+ >
55
+ > - 📖 Documentation: <https://docs.masonite.dev/orm/introduction/>
56
+ >
57
+ > ❤️ In memory of [Joseph "Joe" Mancuso](https://github.com/josephmancuso), creator of Masonite.
58
+
59
+ ---
60
+
61
+ <p align="center">
62
+ <img src="https://dev-to-uploads.s3.amazonaws.com/uploads/articles/4trhpkkdbbzutc5ufxi9.png" width="160px">
63
+ <h1 align="center">Masonite ORM</h1>
64
+ </p>
65
+
66
+ <p align="center">
67
+ <a href="https://docs.masoniteproject.com">
68
+ <img alt="Masonite Package" src="https://img.shields.io/static/v1?label=Masonite&message=package&labelColor=grey&color=blue&logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAAAXNSR0IArs4c6QAAAIRlWElmTU0AKgAAAAgABQESAAMAAAABAAEAAAEaAAUAAAABAAAASgEbAAUAAAABAAAAUgEoAAMAAAABAAIAAIdpAAQAAAABAAAAWgAAAAAAAABIAAAAAQAAAEgAAAABAAOgAQADAAAAAQABAACgAgAEAAAAAQAAAA6gAwAEAAAAAQAAAA4AAAAATspU+QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAVlpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IlhNUCBDb3JlIDUuNC4wIj4KICAgPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICAgICAgPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIKICAgICAgICAgICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZmLzEuMC8iPgogICAgICAgICA8dGlmZjpPcmllbnRhdGlvbj4xPC90aWZmOk9yaWVudGF0aW9uPgogICAgICA8L3JkZjpEZXNjcmlwdGlvbj4KICAgPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KTMInWQAAAnxJREFUKBVNUl1IVEEUPjPObdd1VdxWM0rMIl3bzbVWLSofVm3th0AhMakHHyqRiNSHEAq5b2HSVvoQRUiEECQUQkkPbRslRGigG8auoon2oPSjpev+3PWeZq7eaC5nDt93vplz5txDQJYpNxX4st4JFiwj9aCqmswUFQNS/A2YskrZJPYefkECC2GhQwAqvLYybwXrwBvq8HSNOXRO92+aH7nW8vc/wS2Z9TqneYt2KHjlf9Iv+43wFJMExzO0YE5OKe60N+AOW6OmE+WJTBrg23jjzWxMBauOlfyycsV24F+cH+zAXYUOGl+DaiDxfl245/W9OnVrSY+O2eqPkyz4sVvHoKp9gOihf5KoAVv3hkQgbj/ihG9fI3RixKcUVx7lJVaEc0vnyf2FFll+ny80ZHZiGhIKowWJBCEAKr+FSuNDLt+lxybSF51lo74arqs113dOZqwsptxNs5bwi7Q3q8npSC2AWmvjTncZf1l61e5DEizNn5mtufpsqk5+CZTuq00sP1wkNPv8jeEikVVlJso+GEwRtNs3QeBt2YP2V2ZI3Tx0e+7T89zK5tNASOLEytJAryGtkLc2PcBM5byyUWYkMQpMioYcDcchC6xN220Iv36Ot8pV0454RHLEwmmD7UWfIdX0zq3GjMPG5NKBtv5qiPEPekK2U51j1451BZoc3i+1ohSQ/UzzG5uYFFn2mwVUnO4O3JblXA91T51l3pB3QweDl7sNXMyEjbguSjrPcQNmwDkNc8CbCvDd0+xCC7RFi9wFulD3mJeXqxQevB4prrqgc0TmQ85NG/K43e2UwnMVAJIEBNfWRYR3HfnvivrIzMyo4Hgy+hfscvLo53jItAAAAABJRU5ErkJggg==">
69
+ </a>
70
+ <img src="https://img.shields.io/badge/python-3.6+-blue.svg" alt="Python Version">
71
+ <img alt="GitHub release (latest by date)" src="https://img.shields.io/github/v/release/MasoniteFramework/orm">
72
+ <img alt="License" src="https://img.shields.io/github/license/MasoniteFramework/orm">
73
+ <a href="https://github.com/psf/black"><img alt="Code style: black" src="https://img.shields.io/badge/code%20style-black-000000.svg"></a>
74
+ </p>
75
+
76
+ ## Installation & Usage
77
+
78
+ All documentation can be found here [https://orm.masoniteproject.com](https://orm.masoniteproject.com).
79
+
80
+ Hop on [Masonite Discord Community](https://discord.gg/TwKeFahmPZ) to ask any questions you need!
81
+
82
+ ## Contributing
83
+
84
+ If you would like to contribute please read the [Contributing Documentation](CONTRIBUTING.md) here.
85
+
86
+ ## License
87
+
88
+ Masonite ORM is open-sourced software licensed under the [MIT License](LICENSE).
@@ -0,0 +1,116 @@
1
+ masonite_orm-3.0.0.post1.dist-info/licenses/LICENSE,sha256=WtOwjcNbt5yMsHu1oA1l88yMvN3sUWqD3L154KsEDC0,1071
2
+ masoniteorm/__init__.py,sha256=o0foRomzSsbkJv2gt3UJK11O0KKURGiYRKxKIs8ucN0,362
3
+ masoniteorm/config.py,sha256=XgXgEIZF0uKKVVkmClSUqnrGU1Z8wXisytOrNwM8Kgc,4144
4
+ masoniteorm/exceptions.py,sha256=MYxaIXb3ialLU5b5M2p19bBVvbj1bbof5PypVlSfsC0,465
5
+ masoniteorm/collection/Collection.py,sha256=8Ctdn6RIW5OcqcFJEVendCmOyEJ78_W2WZyq_yqN6Nk,16716
6
+ masoniteorm/collection/__init__.py,sha256=zzaVKuCtFOKm00pFWNpIjBqGvxozLrClEj5egPuMB9A,35
7
+ masoniteorm/commands/CanOverrideConfig.py,sha256=CuZsUUOcbQFwCotvOjkoEjcXmJz3L2KZtJaDpC0RDj8,464
8
+ masoniteorm/commands/CanOverrideOptionsDefault.py,sha256=xVyJEhwfo0XPIxd-K1OUYVAy9sqv-qNQ-A8Ll0T5JLY,988
9
+ masoniteorm/commands/Command.py,sha256=2NOX0-htWf66HRp0LnaBZG-TaT5WjlPfv0Tx2zquKyE,186
10
+ masoniteorm/commands/Entry.py,sha256=wb0xYvWxeP8tQRkRaTRuxMAABr7femNbE8iQkXV6SQ4,1194
11
+ masoniteorm/commands/MakeMigrationCommand.py,sha256=3Dx9WvINdpwDvMzJQqGmLsEIojZS-xV9H6GzkNKgfBY,1646
12
+ masoniteorm/commands/MakeModelCommand.py,sha256=qQ6UAMZ8a5UDtABz8osv1F6NtWY36F71r1DEv8GDVWk,2697
13
+ masoniteorm/commands/MakeModelDocstringCommand.py,sha256=pIeWQIXtoaDuqstJZ8209P5SP9ygem1LPc17e_hEszw,1371
14
+ masoniteorm/commands/MakeObserverCommand.py,sha256=4auZ1ClGFygxFIsG7y3yGSoHInYMwgmTrsg6N4AuHhE,1600
15
+ masoniteorm/commands/MakeSeedCommand.py,sha256=LSvRtyxq3bG_W6zIsh1YF7qU0CBJd7rTLAsm6U8CufQ,1463
16
+ masoniteorm/commands/MigrateCommand.py,sha256=FsrBk9by55pHbBqq3MSFjuePoTTjryf6eKwO-aXyMgI,1646
17
+ masoniteorm/commands/MigrateFreshCommand.py,sha256=Fgs1Zbv9X1KwPiNrQHmLYSuSjt0EbGF188CFlKayILI,1504
18
+ masoniteorm/commands/MigrateRefreshCommand.py,sha256=_r9Vhs67JjdOF9dwTD63ZM6YqgMksqeOtkFXEdHarg0,1497
19
+ masoniteorm/commands/MigrateResetCommand.py,sha256=hJBF98-0UTQDp_dnVHitYFbNJYHLPBOuatq-0bXdVD4,786
20
+ masoniteorm/commands/MigrateRollbackCommand.py,sha256=HUFJOPNZIWbaTY6dGIGFCJAmqCIRBMumhYl8CNaUfL0,929
21
+ masoniteorm/commands/MigrateStatusCommand.py,sha256=D0puMxwYJtncnQBHzjDyQ9X5j9iFPd0078By38H0AzI,1590
22
+ masoniteorm/commands/SeedRunCommand.py,sha256=Xjv5VEyVMjEitGYbwf6MFGV7eDQbstMmMLiDFNM9kMA,1080
23
+ masoniteorm/commands/ShellCommand.py,sha256=HK-zryKxaVWrFFNKqNO6Dyocvfo8ccrIG-8kKJULp-s,7353
24
+ masoniteorm/commands/__init__.py,sha256=00wn4glDnDO5vcYMkIoMO7TjUmtHEWhMjOpcb9lfuxQ,719
25
+ masoniteorm/commands/stubs/create_migration.stub,sha256=tvuJP2FnRSxLTyYpKOZmvftvn95YorL7dnjUkFfFk3Q,437
26
+ masoniteorm/commands/stubs/create_seed.stub,sha256=aMU7sg6VfSvFQWL5l-RY4E2yE2siSyiRy3ASp4ZXgI8,171
27
+ masoniteorm/commands/stubs/model.stub,sha256=fZQeRYmvIc1ozjutx4iWnmuXbzrYphy4jUmKD_hKJu0,124
28
+ masoniteorm/commands/stubs/observer.stub,sha256=bp5SUa9N3FKaPjI_9hpKbsdlX82mg714MSezVI6WO3U,2601
29
+ masoniteorm/commands/stubs/table_migration.stub,sha256=kCisLRpkTD8Q6aBAnj6SwmE6NSL_BywQB8mbW9K0Cak,419
30
+ masoniteorm/connections/BaseConnection.py,sha256=fhXGRsx4o9yY9N9YSu9awwzhBE3EDqQZj_w0THj-2VY,3045
31
+ masoniteorm/connections/ConnectionFactory.py,sha256=5nymqgsoBSlSkE-LAOnzdvbYrdGuNzL6t9xN7d7O6y4,1835
32
+ masoniteorm/connections/ConnectionResolver.py,sha256=F0qOxidOqq_w6n-rXa_SqZL5B7D-vdioNicl9Gd28ho,4048
33
+ masoniteorm/connections/MSSQLConnection.py,sha256=QOXwAPu_4ZBsI4XHme0F7vInPWy7qxp1c7azn25A7FI,5772
34
+ masoniteorm/connections/MySQLConnection.py,sha256=9IdmcP5QKyuFWhYJubMAKBlBiy6_vqgF0qu-sRDkAfg,6807
35
+ masoniteorm/connections/PostgresConnection.py,sha256=9RSl5cZGLy6Dae8MlNd17ySKNnYBRauV_JzZx2xz5tM,7160
36
+ masoniteorm/connections/SQLiteConnection.py,sha256=KqrumW6BUVyRJdy4rV4KwEC6qv-QcAl6pBT1uMhcDso,5083
37
+ masoniteorm/connections/__init__.py,sha256=l-H2bGSJcfdqSPuu1P9QL_7xowDiKBA_-XiPmAxHkzw,288
38
+ masoniteorm/expressions/__init__.py,sha256=-H3mIEwNly2tmfImiUXG5mRNKKf1tr8XiMoGqlK69M4,41
39
+ masoniteorm/expressions/expressions.py,sha256=MGz0vTIdaAm99tA6wT6UOFGVyzIE5oYYM5WW785CjFg,7601
40
+ masoniteorm/factories/Factory.py,sha256=4xbzK0ifiP3F5d8gQl-bPrOGr_hyB8P3sOFka0Ewxgk,3771
41
+ masoniteorm/factories/__init__.py,sha256=hCoB7YJU0Jh1S8kpXxWZ37a0jLoR9FqbBdh76zNDtMo,29
42
+ masoniteorm/helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
43
+ masoniteorm/helpers/misc.py,sha256=OYROrT-kpJXiWZs1eF0WnHu2tR_Lt5bRak94qviC94M,573
44
+ masoniteorm/migrations/Migration.py,sha256=on31Hz6phdyt3uWGqaR14va2EiYwLHFkdZbvNXnOLSA,11030
45
+ masoniteorm/migrations/__init__.py,sha256=lQ9cBqE58BJdCeS8ceKIU8APMefHYJs27Hp8tL4QUmM,33
46
+ masoniteorm/models/MigrationModel.py,sha256=cNvhKvF95STPaxmRHoyxW0GvYbsne0WoAo1NtBnihGM,191
47
+ masoniteorm/models/Model.py,sha256=KEGA5Jz7EIwjPTL0PsQbupI0h3_KsGcug7a3mtMrW8Y,35519
48
+ masoniteorm/models/Model.pyi,sha256=5TBPwAIe2pAA0znzWFZ_OIlpSalcj-5VF6VdxdUF9qM,32210
49
+ masoniteorm/models/Pivot.py,sha256=a6jduozor4-pIdIthTLqtd4IBFhynTM-JtgoKw1Ojdo,74
50
+ masoniteorm/models/__init__.py,sha256=pT_-9C_yDFIalRjCCWUZ58oxv21aU3Q6ZJ_6ckWIM1s,25
51
+ masoniteorm/observers/ObservesEvents.py,sha256=JA1jb4WNBIpzkmgV5FQqU1zREYvpU0zX1SQXMab6gUs,850
52
+ masoniteorm/observers/__init__.py,sha256=SZC88sT8cqa3vBj9-A997pQrsVfhJ2RGWn5X9Hiv1c4,43
53
+ masoniteorm/pagination/BasePaginator.py,sha256=h5E9fgij80QJPC4IVVk7KXDsqgO7OuAaTEAEr8ZfUtI,187
54
+ masoniteorm/pagination/LengthAwarePaginator.py,sha256=a9H2AcZzutDbh8zNs7HzAbyU8AE4rGBbNFRdgVrJC1A,1116
55
+ masoniteorm/pagination/SimplePaginator.py,sha256=wmsrb1tw1qClQOAt1G-omw4gdXwXY0G5oKAuwn6YCAo,922
56
+ masoniteorm/pagination/__init__.py,sha256=ZphGeUsUbofvzWgT2TT2WHcmGQ68zt1i6Te1cYEqoMg,100
57
+ masoniteorm/providers/ORMProvider.py,sha256=SEYD5SnF2r_-UkFREEehwEitMJH9LYFyIXZ9yYgChmU,971
58
+ masoniteorm/providers/__init__.py,sha256=-jQszPHOczKiUX6ymVKxDMR9p7lqIDdIfpVkZaAxRQg,37
59
+ masoniteorm/query/EagerRelation.py,sha256=xl7nnv7gzm5z_XW7YmBMf1FrJjBaNJCy2f9hceKPQGg,1449
60
+ masoniteorm/query/QueryBuilder.py,sha256=7cy-N2HMeFUXXAz3xcX-FzJNIpoBvNjKzo--Z0Zzefw,73258
61
+ masoniteorm/query/__init__.py,sha256=6VNDpRnJlErJ8ZOXe82Ad88IpEo3ngp9J1dU3iFo37Q,39
62
+ masoniteorm/query/grammars/BaseGrammar.py,sha256=JtnumP2Mwr6_fQx9ZD-syn6wyVcoPISXVrp4HnzpnTY,33480
63
+ masoniteorm/query/grammars/MSSQLGrammar.py,sha256=szNh-eczbR17nkBUfLMCatL20niFFBcfzwBXGXQ6Z0U,5261
64
+ masoniteorm/query/grammars/MySQLGrammar.py,sha256=bSgazAaIeK9rm_nZ-jN0odaeiQhU3vfBDoFAgf1AlrU,6724
65
+ masoniteorm/query/grammars/PostgresGrammar.py,sha256=hX_tWLEG5g5bAoGWLKULnF3aCdUsky9S2ffUh4HXRbU,5844
66
+ masoniteorm/query/grammars/SQLiteGrammar.py,sha256=Ukt2Mpms3jET4tNjeQp6FDX6vEbdW2tH3h64rK54sFY,6236
67
+ masoniteorm/query/grammars/__init__.py,sha256=zoX9UPmJ9IWJo29NhMtFMOVT-rTOw5bO5lpzi1k7CNk,164
68
+ masoniteorm/query/processors/MSSQLPostProcessor.py,sha256=2X9PHJOb6ZAc2lQnZ1YwXQy0TvLyAdMtFHopqoVYujw,2277
69
+ masoniteorm/query/processors/MySQLPostProcessor.py,sha256=rEh_S2-rlOGUqbDw5QaeWKhr3xW45QZg8F_gbUjYYT0,2055
70
+ masoniteorm/query/processors/PostgresPostProcessor.py,sha256=y5Fy3ezpSsjt5fj57Y0Qfjw5R59VbD99ZthB-mRVNaU,2074
71
+ masoniteorm/query/processors/SQLitePostProcessor.py,sha256=6S5tPFSvjTXtE4QuZC4UnXiHgrpkEzSChQiKuX5VW30,2067
72
+ masoniteorm/query/processors/__init__.py,sha256=7nxXGaFtw_88nrW1_-UgHRmsE7jVCXLxfhXA1zxegdI,212
73
+ masoniteorm/relationships/BaseRelationship.py,sha256=Qm-pAwmupskkP8gcrm9uJdS8qzxO1BMTlzews8ngnVA,5685
74
+ masoniteorm/relationships/BelongsTo.py,sha256=tEJo52WpVRNKWRVUBV8XUlZ0ruVBNVBK9dCFFmcv2e0,4289
75
+ masoniteorm/relationships/BelongsToMany.py,sha256=W2U57hYLWG2rQ3e-t_el0mHq_g9cYadmH9n64bJ7DcY,20244
76
+ masoniteorm/relationships/HasMany.py,sha256=jvWPkixpBYQltZ_jU5ufNKUSuf97N-mNpVmorKhzBZo,2179
77
+ masoniteorm/relationships/HasManyThrough.py,sha256=ISPtNgjlCT8Qsydp97eKiK12ln2mRVp4-l6QxP43z_I,9589
78
+ masoniteorm/relationships/HasOne.py,sha256=3cIeAabXP4CX5L7lshBtOGyn7yQBsxHQyJNem4TrjuI,3841
79
+ masoniteorm/relationships/HasOneThrough.py,sha256=koH67aPWRpvTLdapZ3eeSHGIZpwcsus8f7nHUoApkV0,9406
80
+ masoniteorm/relationships/MorphMany.py,sha256=ixHxaT6tEKlZzWI8UjUoHjYc5S8W_nxg0E-Sy0oTOO0,5378
81
+ masoniteorm/relationships/MorphOne.py,sha256=rgMgK60mWnMWlvNkNkMTFTTPNfgDpTEf3RhZIF8ASog,5421
82
+ masoniteorm/relationships/MorphTo.py,sha256=raSrqrHzHX6N64n6kusruouUdS_4xuy7GBedUu332ck,3996
83
+ masoniteorm/relationships/MorphToMany.py,sha256=_qFXUoCmbwrs41cANFpaM9a2KsBeHvHV3JoksPPI7TY,3911
84
+ masoniteorm/relationships/__init__.py,sha256=MWX2YAqH_wHeNpGMjsMsd-KvZhlnu2VzFmWCZ-SuZ6w,495
85
+ masoniteorm/schema/Blueprint.py,sha256=Qap7ieZCSPI_Ime-a7hP2QdSzP1_W0I6DkT3M8qN0eM,33856
86
+ masoniteorm/schema/Column.py,sha256=lLdwSo3vSyjNiiQr8InclW4NyR1jAQPFtFvBFly8wMs,3313
87
+ masoniteorm/schema/ColumnDiff.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
88
+ masoniteorm/schema/Constraint.py,sha256=N2qEGcAsBf1n92SHjd5kMD2W4oBHMHHVGVrWknVeRqs,188
89
+ masoniteorm/schema/ForeignKeyConstraint.py,sha256=cxlrPMRWY9D3QVeklr6CpHCUkedNUHieDAIDh6PrsSA,791
90
+ masoniteorm/schema/Index.py,sha256=n_BxUJdDVZ-vnisWS1pk_4fYCHZEx17kbSJp2AVhfIo,154
91
+ masoniteorm/schema/Schema.py,sha256=7B1B25s8-Hgb-GGgTHRdEHI1nQx6VryxsuMw_9-uxB4,10583
92
+ masoniteorm/schema/Table.py,sha256=b0eCXPMs2e_2w8p58YbKkeYYmTOl5zCaXie43H4jRdI,2552
93
+ masoniteorm/schema/TableDiff.py,sha256=ZLN1J2TUVGXGy791q_jfJebs95T-esGDA6eHRnMS3Nk,2292
94
+ masoniteorm/schema/__init__.py,sha256=9vmRSok_Tj83HdtnO92Qo44eDcb-lajoNLodLRhphs0,79
95
+ masoniteorm/schema/platforms/MSSQLPlatform.py,sha256=88ksx6n5lFn4pjdREKEsmkOTPPaFBk7niZlJBDdOIk8,13155
96
+ masoniteorm/schema/platforms/MySQLPlatform.py,sha256=wRECBCb5JRE3qpC1nKc78hFj0Bdk0rep56VdhWDAJsQ,19019
97
+ masoniteorm/schema/platforms/Platform.py,sha256=0QTxnDURqMHkCwb4gKhPCSYDdXmoHiwnWPG-LGJxG5Y,3503
98
+ masoniteorm/schema/platforms/PostgresPlatform.py,sha256=A-u3k-6d6l62reYKa75JfgxeBH8oEHfT1CdYQDA0i1U,20286
99
+ masoniteorm/schema/platforms/SQLitePlatform.py,sha256=zG4RM3MtRnnQXUhKjJgYtn1QyKK5yCceipSZMX0eR84,17956
100
+ masoniteorm/schema/platforms/__init__.py,sha256=cTHCExrCklkTYhqD9goVXlxEKlklDxlVj6lYh604BHY,172
101
+ masoniteorm/scopes/BaseScope.py,sha256=XgaOYCS3XkYxQTyzpwyNtP0JvHukeSHiPFY1OE7GGtg,156
102
+ masoniteorm/scopes/SoftDeleteScope.py,sha256=6CjXEU2ythUzZJqO73F5jt6n-w6uFp-urAWXvnUuBhY,1982
103
+ masoniteorm/scopes/SoftDeletesMixin.py,sha256=2ylrLkzEq1LeCRKpvqGv-EP-1EWnJD1cIzjo1u3s8oM,358
104
+ masoniteorm/scopes/TimeStampsMixin.py,sha256=TpUtPVvCgXcbk2QYoOsHBR1b0bz6LGILz_zryPWKwGw,337
105
+ masoniteorm/scopes/TimeStampsScope.py,sha256=waqn3ythaFZvzxZ8uE4rtg8mz9ic5GyW4rRvnAJUyUE,1452
106
+ masoniteorm/scopes/UUIDPrimaryKeyMixin.py,sha256=vdI4NgEAPhANDqOcv2krqkkjWuMnrRtHVkFdKoc_VW8,255
107
+ masoniteorm/scopes/UUIDPrimaryKeyScope.py,sha256=baJ9sgdu3xF-HB2vXNdMJVxePpVY9y1QB0GgjdjSKEM,1740
108
+ masoniteorm/scopes/__init__.py,sha256=PfPLwIZQuqPW9_SjkJwRStz61a3bCiB-8Uplq_1pw2k,346
109
+ masoniteorm/scopes/scope.py,sha256=aYkzPlJ1IWm1-BlX1WC-lnQBMAjy42GXiaG2fVnjZDk,489
110
+ masoniteorm/seeds/Seeder.py,sha256=Q9FXi7_E79Zj_CimMkwTLkie5laGLTV6P4WDmluCjOU,1274
111
+ masoniteorm/seeds/__init__.py,sha256=SnfXaGXp6HlMQm66KRD2ZlL7yxljJf3nhmSvGGbbKxU,27
112
+ masonite_orm-3.0.0.post1.dist-info/METADATA,sha256=1ENdw5Xq9Izkx49W4b7xZzeP9oPk9XRjB1VKY74ulBs,5151
113
+ masonite_orm-3.0.0.post1.dist-info/WHEEL,sha256=SmOxYU7pzNKBqASvQJ7DjX3XGUF92lrGhMb3R6_iiqI,91
114
+ masonite_orm-3.0.0.post1.dist-info/entry_points.txt,sha256=uo6jJc50T92eUXJ3N2LhPzebSLb8xnmZ3bGiJj6pFWo,76
115
+ masonite_orm-3.0.0.post1.dist-info/top_level.txt,sha256=uMTgCDtTEYqI3r427kbsqDKKeSpxBCIsuqC4cDthiC8,12
116
+ masonite_orm-3.0.0.post1.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (79.0.1)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ masonite-orm = masoniteorm.commands.Entry:application.run
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2020 Joseph Mancuso
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1 @@
1
+ masoniteorm
@@ -0,0 +1,12 @@
1
+ import warnings
2
+
3
+ warnings.warn(
4
+ "The 'masonite-orm' package is unmaintained and will receive no further "
5
+ "updates. Masonite ORM continues as 'masonite-framework-orm' "
6
+ "(https://github.com/masonitedev/orm) — imports are unchanged. "
7
+ "Documentation: https://docs.masonite.dev",
8
+ FutureWarning,
9
+ stacklevel=2,
10
+ )
11
+
12
+ from .models import Model