Skip to content

Commit

Permalink
increased varchar limit of db column hostname and username, 500 char …
Browse files Browse the repository at this point in the history
…is enough for everyone
  • Loading branch information
sebastianneubauer committed Nov 29, 2017
1 parent 5b1f701 commit 4e24aa9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions postgraas_server/management_resources.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ class DBInstance(db.Model):
postgraas_instance_name = db.Column(db.String(100))
creation_timestamp = db.Column(db.DateTime)
db_name = db.Column(db.String(100))
username = db.Column(db.String(100))
username = db.Column(db.String(500))
password = db.Column(db.String(100))
hostname = db.Column(db.String(50))
hostname = db.Column(db.String(500))
port = db.Column(db.Integer)
container_id = db.Column(db.String(100))

Expand Down

0 comments on commit 4e24aa9

Please sign in to comment.