.deepsource.toml
.env-example
.gitignore
.pypirc
CONTRIBUTING.md
LICENSE
MANIFEST.in
README.md
TODO.md
cc.py
makefile
orm
orm.sqlite3
requirements.txt
setup.py
.github/ISSUE_TEMPLATE/bug_report.md
.github/ISSUE_TEMPLATE/feature_request.md
.github/workflows/pythonapp.yml
.github/workflows/pythonpublish.yml
app/observers/UserObserver.py
conda/conda_build_config.yaml
conda/meta.yaml
databases/migrations/2018_01_09_043202_create_users_table.py
databases/migrations/2020_04_17_000000_create_friends_table.py
databases/migrations/2020_04_17_00000_create_articles_table.py
databases/migrations/2020_10_20_152904_create_table_schema_migration.py
databases/migrations/__init__.py
databases/seeds/database_seeder.py
databases/seeds/user_table_seeder.py
src/masonite_orm.egg-info/PKG-INFO
src/masonite_orm.egg-info/SOURCES.txt
src/masonite_orm.egg-info/dependency_links.txt
src/masonite_orm.egg-info/entry_points.txt
src/masonite_orm.egg-info/requires.txt
src/masonite_orm.egg-info/top_level.txt
src/masoniteorm/.gitignore
src/masoniteorm/__init__.py
src/masoniteorm/config.py
src/masoniteorm/exceptions.py
src/masoniteorm/collection/Collection.py
src/masoniteorm/collection/__init__.py
src/masoniteorm/commands/CanOverrideConfig.py
src/masoniteorm/commands/CanOverrideOptionsDefault.py
src/masoniteorm/commands/Command.py
src/masoniteorm/commands/Entry.py
src/masoniteorm/commands/MakeMigrationCommand.py
src/masoniteorm/commands/MakeModelCommand.py
src/masoniteorm/commands/MakeModelDocstringCommand.py
src/masoniteorm/commands/MakeObserverCommand.py
src/masoniteorm/commands/MakeSeedCommand.py
src/masoniteorm/commands/MigrateCommand.py
src/masoniteorm/commands/MigrateFreshCommand.py
src/masoniteorm/commands/MigrateRefreshCommand.py
src/masoniteorm/commands/MigrateResetCommand.py
src/masoniteorm/commands/MigrateRollbackCommand.py
src/masoniteorm/commands/MigrateStatusCommand.py
src/masoniteorm/commands/SeedRunCommand.py
src/masoniteorm/commands/ShellCommand.py
src/masoniteorm/commands/__init__.py
src/masoniteorm/commands/stubs/create_migration.stub
src/masoniteorm/commands/stubs/create_seed.stub
src/masoniteorm/commands/stubs/model.stub
src/masoniteorm/commands/stubs/observer.stub
src/masoniteorm/commands/stubs/table_migration.stub
src/masoniteorm/connections/.gitignore
src/masoniteorm/connections/BaseConnection.py
src/masoniteorm/connections/ConnectionFactory.py
src/masoniteorm/connections/ConnectionResolver.py
src/masoniteorm/connections/MSSQLConnection.py
src/masoniteorm/connections/MySQLConnection.py
src/masoniteorm/connections/PostgresConnection.py
src/masoniteorm/connections/SQLiteConnection.py
src/masoniteorm/connections/__init__.py
src/masoniteorm/expressions/__init__.py
src/masoniteorm/expressions/expressions.py
src/masoniteorm/factories/Factory.py
src/masoniteorm/factories/__init__.py
src/masoniteorm/helpers/__init__.py
src/masoniteorm/helpers/misc.py
src/masoniteorm/migrations/Migration.py
src/masoniteorm/migrations/__init__.py
src/masoniteorm/models/MigrationModel.py
src/masoniteorm/models/Model.py
src/masoniteorm/models/Model.pyi
src/masoniteorm/models/Pivot.py
src/masoniteorm/models/__init__.py
src/masoniteorm/observers/ObservesEvents.py
src/masoniteorm/observers/__init__.py
src/masoniteorm/pagination/BasePaginator.py
src/masoniteorm/pagination/LengthAwarePaginator.py
src/masoniteorm/pagination/SimplePaginator.py
src/masoniteorm/pagination/__init__.py
src/masoniteorm/providers/ORMProvider.py
src/masoniteorm/providers/__init__.py
src/masoniteorm/query/EagerRelation.py
src/masoniteorm/query/QueryBuilder.py
src/masoniteorm/query/__init__.py
src/masoniteorm/query/grammars/BaseGrammar.py
src/masoniteorm/query/grammars/MSSQLGrammar.py
src/masoniteorm/query/grammars/MySQLGrammar.py
src/masoniteorm/query/grammars/PostgresGrammar.py
src/masoniteorm/query/grammars/SQLiteGrammar.py
src/masoniteorm/query/grammars/__init__.py
src/masoniteorm/query/processors/MSSQLPostProcessor.py
src/masoniteorm/query/processors/MySQLPostProcessor.py
src/masoniteorm/query/processors/PostgresPostProcessor.py
src/masoniteorm/query/processors/SQLitePostProcessor.py
src/masoniteorm/query/processors/__init__.py
src/masoniteorm/relationships/BaseRelationship.py
src/masoniteorm/relationships/BelongsTo.py
src/masoniteorm/relationships/BelongsToMany.py
src/masoniteorm/relationships/HasMany.py
src/masoniteorm/relationships/HasManyThrough.py
src/masoniteorm/relationships/HasOne.py
src/masoniteorm/relationships/HasOneThrough.py
src/masoniteorm/relationships/MorphMany.py
src/masoniteorm/relationships/MorphOne.py
src/masoniteorm/relationships/MorphTo.py
src/masoniteorm/relationships/MorphToMany.py
src/masoniteorm/relationships/__init__.py
src/masoniteorm/schema/Blueprint.py
src/masoniteorm/schema/Column.py
src/masoniteorm/schema/ColumnDiff.py
src/masoniteorm/schema/Constraint.py
src/masoniteorm/schema/ForeignKeyConstraint.py
src/masoniteorm/schema/Index.py
src/masoniteorm/schema/Schema.py
src/masoniteorm/schema/Table.py
src/masoniteorm/schema/TableDiff.py
src/masoniteorm/schema/__init__.py
src/masoniteorm/schema/platforms/MSSQLPlatform.py
src/masoniteorm/schema/platforms/MySQLPlatform.py
src/masoniteorm/schema/platforms/Platform.py
src/masoniteorm/schema/platforms/PostgresPlatform.py
src/masoniteorm/schema/platforms/SQLitePlatform.py
src/masoniteorm/schema/platforms/__init__.py
src/masoniteorm/scopes/BaseScope.py
src/masoniteorm/scopes/SoftDeleteScope.py
src/masoniteorm/scopes/SoftDeletesMixin.py
src/masoniteorm/scopes/TimeStampsMixin.py
src/masoniteorm/scopes/TimeStampsScope.py
src/masoniteorm/scopes/UUIDPrimaryKeyMixin.py
src/masoniteorm/scopes/UUIDPrimaryKeyScope.py
src/masoniteorm/scopes/__init__.py
src/masoniteorm/scopes/scope.py
src/masoniteorm/seeds/Seeder.py
src/masoniteorm/seeds/__init__.py
src/masoniteorm/stubs/create-migration.html
src/masoniteorm/stubs/table-migration.html
src/masoniteorm/testing/BaseTestCaseSelectGrammar.py
src/masoniteorm/testing/__init__.py
tests/User.py
tests/utils.py
tests/collection/test_collection.py
tests/commands/test_shell.py
tests/config/test_db_url.py
tests/connections/test_base_connections.py
tests/eagers/test_eager.py
tests/factories/test_factories.py
tests/integrations/config/__init__.py
tests/integrations/config/database.py
tests/models/test_models.py
tests/mssql/builder/test_mssql_query_builder.py
tests/mssql/builder/test_mssql_query_builder_relationships.py
tests/mssql/grammar/test_mssql_delete_grammar.py
tests/mssql/grammar/test_mssql_insert_grammar.py
tests/mssql/grammar/test_mssql_qmark.py
tests/mssql/grammar/test_mssql_select_grammar.py
tests/mssql/grammar/test_mssql_update_grammar.py
tests/mssql/schema/test_mssql_schema_builder.py
tests/mssql/schema/test_mssql_schema_builder_alter.py
tests/mysql/builder/test_mysql_builder_transaction.py
tests/mysql/builder/test_query_builder.py
tests/mysql/builder/test_query_builder_scopes.py
tests/mysql/builder/test_transactions.py
tests/mysql/connections/test_mysql_connection_selects.py
tests/mysql/grammar/test_mysql_delete_grammar.py
tests/mysql/grammar/test_mysql_insert_grammar.py
tests/mysql/grammar/test_mysql_qmark.py
tests/mysql/grammar/test_mysql_select_grammar.py
tests/mysql/grammar/test_mysql_update_grammar.py
tests/mysql/model/test_accessors_and_mutators.py
tests/mysql/model/test_model.py
tests/mysql/relationships/test_belongs_to_many.py
tests/mysql/relationships/test_has_many_through.py
tests/mysql/relationships/test_has_one_through.py
tests/mysql/relationships/test_relationships.py
tests/mysql/schema/test_mysql_schema_builder.py
tests/mysql/schema/test_mysql_schema_builder_alter.py
tests/mysql/scopes/test_can_use_global_scopes.py
tests/mysql/scopes/test_can_use_scopes.py
tests/mysql/scopes/test_soft_delete.py
tests/postgres/builder/test_postgres_query_builder.py
tests/postgres/builder/test_postgres_transaction.py
tests/postgres/grammar/test_delete_grammar.py
tests/postgres/grammar/test_insert_grammar.py
tests/postgres/grammar/test_select_grammar.py
tests/postgres/grammar/test_update_grammar.py
tests/postgres/relationships/test_postgres_relationships.py
tests/postgres/schema/test_postgres_schema_builder.py
tests/postgres/schema/test_postgres_schema_builder_alter.py
tests/scopes/test_default_global_scopes.py
tests/seeds/test_seeds.py
tests/sqlite/builder/test_sqlite_builder_insert.py
tests/sqlite/builder/test_sqlite_builder_pagination.py
tests/sqlite/builder/test_sqlite_query_builder.py
tests/sqlite/builder/test_sqlite_query_builder_eager_loading.py
tests/sqlite/builder/test_sqlite_query_builder_relationships.py
tests/sqlite/builder/test_sqlite_transaction.py
tests/sqlite/grammar/test_sqlite_delete_grammar.py
tests/sqlite/grammar/test_sqlite_insert_grammar.py
tests/sqlite/grammar/test_sqlite_select_grammar.py
tests/sqlite/grammar/test_sqlite_update_grammar.py
tests/sqlite/models/test_observers.py
tests/sqlite/models/test_sqlite_model.py
tests/sqlite/relationships/test_sqlite_polymorphic.py
tests/sqlite/relationships/test_sqlite_relationships.py
tests/sqlite/schema/test_sqlite_schema_builder.py
tests/sqlite/schema/test_sqlite_schema_builder_alter.py
tests/sqlite/schema/test_table.py
tests/sqlite/schema/test_table_diff.py