from masoniteorm.migrations import Migration class CreateUsersTable(Migration): def up(self): """Run the migrations.""" with self.schema.create('users') as table: pass def down(self): """Revert the migrations.""" self.schema.drop('users')