diff --git a/the_app/models/nonsense.py b/the_app/models/nonsense.py index 2d96a23..9dd449f 100644 --- a/the_app/models/nonsense.py +++ b/the_app/models/nonsense.py @@ -11,7 +11,7 @@ from the_app.models.base import Base class Nonsense(Base): __tablename__ = "nonsense" __table_args__ = ( - {"schema": "the_others"}, + {"schema": "happy_hog"}, ) id = Column(UUID(as_uuid=True), unique=True, default=uuid.uuid4, autoincrement=True) name = Column(String, nullable=False, primary_key=True, unique=True) diff --git a/the_app/models/stuff.py b/the_app/models/stuff.py index 2d775d1..0305cba 100644 --- a/the_app/models/stuff.py +++ b/the_app/models/stuff.py @@ -11,7 +11,7 @@ from the_app.models.base import Base class Stuff(Base): __tablename__ = "stuff" __table_args__ = ( - {"schema": "the_others"}, + {"schema": "happy_hog"}, ) id = Column(UUID(as_uuid=True), unique=True, default=uuid.uuid4, autoincrement=True) name = Column(String, nullable=False, primary_key=True, unique=True)