Skip to content
Snippets Groups Projects
Commit 4eadc12c authored by Anton Gusev's avatar Anton Gusev
Browse files

change comments

parent 6b7ffc84
No related branches found
No related tags found
5 merge requests!5Develop,!4Develop,!3Develop,!2Develop,!1Develop
......@@ -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
......
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment