diff --git a/src/masoniteorm/collection/Collection.py b/src/masoniteorm/collection/Collection.py index a24e98af..e238db8a 100644 --- a/src/masoniteorm/collection/Collection.py +++ b/src/masoniteorm/collection/Collection.py @@ -542,7 +542,6 @@ def __getitem__(self, item): return None def __setitem__(self, key, value): - # test self._items[key] = value def __delitem__(self, key): diff --git a/src/masoniteorm/commands/MakeMigrationCommand.py b/src/masoniteorm/commands/MakeMigrationCommand.py index bcebaf2d..f62aea42 100644 --- a/src/masoniteorm/commands/MakeMigrationCommand.py +++ b/src/masoniteorm/commands/MakeMigrationCommand.py @@ -12,7 +12,7 @@ class MakeMigrationCommand(Command): Creates a new migration file. migration - {name : The name of the migration} + {name : The name of the migration} {--c|create=None : The table to create} {--t|table=None : The table to alter} {--d|directory=databases/migrations : The location of the migration directory}