Skip to content
This repository has been archived by the owner on Jun 3, 2019. It is now read-only.

Commit

Permalink
- Corrected the port details
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxHalford committed Nov 28, 2015
1 parent 3de1173 commit 1f7592f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion app/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class User(db.Model, UserMixin):
__tablename__ = 'users'
name = db.Column(db.String)
surname = db.Column(db.String)
phone = db.Column(db.Integer)
phone = db.Column(db.String)
email = db.Column(db.String, primary_key=True)
confirmation = db.Column(db.Boolean)
_password = db.Column(db.String)
Expand Down
2 changes: 0 additions & 2 deletions config.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# Host and port of the server
SERVER_NAME = '0.0.0.0:5000'
# DEBUG has to be to False in a production enrironment for security reasons
DEBUG = True
# Secret key for generating tokens
Expand Down

0 comments on commit 1f7592f

Please sign in to comment.