If I run the db.py with db.migrate, it says
1050, "Table 'auth_user' already exists
If I run the table with migrate=False, and fake_migrate = True I get another error:
mytable.products' doesn't exist"
Products table below is not being generated in the mysql database. I did show tables and its not being populated.
db = DAL(configuration.get('db.uri'),
pool_size=configuration.get('db.pool_size'),
migrate_enabled=configuration.get('db.migrate'),
check_reserved=['all'])
db.define_table("products",
Field("product_title", "string", requires=IS_NOT_EMPTY() ,label='Product Title'),
Field('Product_discription', 'text',requires=IS_NOT_EMPTY(),label='Product Discription'),
Field("product_image", 'upload', label="Product Image"),
Field("product_document", "upload", label='Product PDF Document'),
Field('product_video', requires=IS_EMPTY_OR(IS_URL())),
auth.signature)