File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 5
5
Archive = sqlalchemy .Table (
6
6
'archive' ,
7
7
metadata ,
8
- sqlalchemy .Column ('id' , sqlalchemy .Integer , primary_key = True ), # noqa:A003
8
+ sqlalchemy .Column ('id' , sqlalchemy .Integer , primary_key = True ),
9
9
sqlalchemy .Column ('content' , sqlalchemy .LargeBinary , nullable = False ),
10
10
11
11
sqlalchemy .Column ('username' , sqlalchemy .String , nullable = False ),
22
22
ChoiceHistory = sqlalchemy .Table (
23
23
'choice_history' ,
24
24
metadata ,
25
- sqlalchemy .Column ('id' , sqlalchemy .Integer , primary_key = True ), # noqa:A003
25
+ sqlalchemy .Column ('id' , sqlalchemy .Integer , primary_key = True ),
26
26
sqlalchemy .Column ('archive_id' , sqlalchemy .ForeignKey ('archive.id' ), nullable = False ),
27
27
28
28
sqlalchemy .Column ('username' , sqlalchemy .String , nullable = False ),
You can’t perform that action at this time.
0 commit comments