summaryrefslogtreecommitdiff
path: root/fhost.py
diff options
context:
space:
mode:
Diffstat (limited to 'fhost.py')
-rwxr-xr-xfhost.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/fhost.py b/fhost.py
index 4880f08..0a04256 100755
--- a/fhost.py
+++ b/fhost.py
@@ -106,6 +106,7 @@ db = SQLAlchemy(app)
migrate = Migrate(app, db)
class URL(db.Model):
+ __tablename__ = "URL"
id = db.Column(db.Integer, primary_key = True)
url = db.Column(db.UnicodeText, unique = True)