URL: Explicitly set upper-case table name
Looks like recent SQLAlchemy/Alembic chose to lower-case it by default. Try not to break existing schemas.
This commit is contained in:
parent
3950f6e8eb
commit
e00866f5e4
1
fhost.py
1
fhost.py
|
@ -106,6 +106,7 @@ db = SQLAlchemy(app)
|
||||||
migrate = Migrate(app, db)
|
migrate = Migrate(app, db)
|
||||||
|
|
||||||
class URL(db.Model):
|
class URL(db.Model):
|
||||||
|
__tablename__ = "URL"
|
||||||
id = db.Column(db.Integer, primary_key = True)
|
id = db.Column(db.Integer, primary_key = True)
|
||||||
url = db.Column(db.UnicodeText, unique = True)
|
url = db.Column(db.UnicodeText, unique = True)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue