From 4eadc12c3974f5a684d855a1b6d4e9c2904c6052 Mon Sep 17 00:00:00 2001 From: Gusev Anton <gusev_aa@groupbwt.com> Date: Fri, 14 Jun 2019 11:10:55 +0300 Subject: [PATCH] change comments --- src/alembic.ini.example | 3 +-- src/database/models/Book.py | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/alembic.ini.example b/src/alembic.ini.example index 9b54baf..fe3f6a7 100644 --- a/src/alembic.ini.example +++ b/src/alembic.ini.example @@ -35,8 +35,7 @@ script_location = database # are written from script.py.mako # output_encoding = utf-8 -# sqlalchemy.url = driver://user:pass@localhost/dbname -# +mysqldb +# sqlalchemy.url = driver://user:pass@host:port/dbname sqlalchemy.url = mysql+pymysql://user:password@localhost/databasename diff --git a/src/database/models/Book.py b/src/database/models/Book.py index f49555a..bda89a4 100644 --- a/src/database/models/Book.py +++ b/src/database/models/Book.py @@ -16,7 +16,7 @@ class Book(Base, Model): rating = Column(SmallInteger, index=True) upc = Column(String(32), unique=True) - product_type = Column(String(32), index=True) # -> Books + product_type = Column(String(32), index=True) price_excl_tax = Column(Numeric(6, 2), index=True) price_incl_tax = Column(Numeric(6, 2), index=True) tax = Column(Numeric(6, 2), index=True) -- GitLab