Skip to content

Commit 956929e

Browse files
committed
rollbacl
1 parent 773d778 commit 956929e

File tree

1 file changed

+0
-2
lines changed
  • src/flask_track_usage/storage

1 file changed

+0
-2
lines changed

src/flask_track_usage/storage/sql.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,6 @@ def set_up(self, engine=None, metadata=None, table_name="flask_usage",
105105
sql.Column('view_args', sql.String(64)),
106106
sql.Column('status', sql.Integer),
107107
sql.Column('remote_addr', sql.String(24)),
108-
sql.Column('country', sql.String(64)),
109108
sql.Column('xforwardedfor', sql.String(24)),
110109
sql.Column('authorization', sql.Boolean),
111110
sql.Column('ip_info', postgresql.JSONB),
@@ -149,7 +148,6 @@ def store(self, data):
149148
remote_addr=data["remote_addr"],
150149
xforwardedfor=data["xforwardedfor"],
151150
authorization=data["authorization"],
152-
country=data["country"],
153151
ip_info=data["ip_info"],
154152
path=data["path"],
155153
speed=data["speed"],

0 commit comments

Comments
 (0)