modify bigint
Showing
1 changed file
with
6 additions
and
6 deletions
| ... | @@ -3,7 +3,7 @@ import pyodbc | ... | @@ -3,7 +3,7 @@ import pyodbc |
| 3 | hil_sql = """ | 3 | hil_sql = """ |
| 4 | create table hil_ocr_report | 4 | create table hil_ocr_report |
| 5 | ( | 5 | ( |
| 6 | id int identity | 6 | id bigint identity |
| 7 | primary key, | 7 | primary key, |
| 8 | case_number nvarchar(64) not null, | 8 | case_number nvarchar(64) not null, |
| 9 | request_team tinyint default 0 not null, | 9 | request_team tinyint default 0 not null, |
| ... | @@ -23,7 +23,7 @@ hil_sql = """ | ... | @@ -23,7 +23,7 @@ hil_sql = """ |
| 23 | 23 | ||
| 24 | create table hil_compare_report | 24 | create table hil_compare_report |
| 25 | ( | 25 | ( |
| 26 | id int identity | 26 | id bigint identity |
| 27 | primary key, | 27 | primary key, |
| 28 | case_number nvarchar(64) not null, | 28 | case_number nvarchar(64) not null, |
| 29 | request_team tinyint default 0 not null, | 29 | request_team tinyint default 0 not null, |
| ... | @@ -43,7 +43,7 @@ hil_sql = """ | ... | @@ -43,7 +43,7 @@ hil_sql = """ |
| 43 | 43 | ||
| 44 | create table hil_compare_offline_report | 44 | create table hil_compare_offline_report |
| 45 | ( | 45 | ( |
| 46 | id int identity | 46 | id bigint identity |
| 47 | primary key, | 47 | primary key, |
| 48 | case_number nvarchar(255) not null, | 48 | case_number nvarchar(255) not null, |
| 49 | request_team nvarchar(255) not null, | 49 | request_team nvarchar(255) not null, |
| ... | @@ -65,7 +65,7 @@ hil_sql = """ | ... | @@ -65,7 +65,7 @@ hil_sql = """ |
| 65 | afc_sql = """ | 65 | afc_sql = """ |
| 66 | create table afc_ocr_report | 66 | create table afc_ocr_report |
| 67 | ( | 67 | ( |
| 68 | id int identity | 68 | id bigint identity |
| 69 | primary key, | 69 | primary key, |
| 70 | case_number nvarchar(64) not null, | 70 | case_number nvarchar(64) not null, |
| 71 | request_team tinyint default 0 not null, | 71 | request_team tinyint default 0 not null, |
| ... | @@ -85,7 +85,7 @@ afc_sql = """ | ... | @@ -85,7 +85,7 @@ afc_sql = """ |
| 85 | 85 | ||
| 86 | create table afc_compare_report | 86 | create table afc_compare_report |
| 87 | ( | 87 | ( |
| 88 | id int identity | 88 | id bigint identity |
| 89 | primary key, | 89 | primary key, |
| 90 | case_number nvarchar(64) not null, | 90 | case_number nvarchar(64) not null, |
| 91 | request_team tinyint default 0 not null, | 91 | request_team tinyint default 0 not null, |
| ... | @@ -105,7 +105,7 @@ afc_sql = """ | ... | @@ -105,7 +105,7 @@ afc_sql = """ |
| 105 | 105 | ||
| 106 | create table afc_compare_offline_report | 106 | create table afc_compare_offline_report |
| 107 | ( | 107 | ( |
| 108 | id int identity | 108 | id bigint identity |
| 109 | primary key, | 109 | primary key, |
| 110 | case_number nvarchar(255) not null, | 110 | case_number nvarchar(255) not null, |
| 111 | request_team nvarchar(255) not null, | 111 | request_team nvarchar(255) not null, | ... | ... |
-
Please register or sign in to post a comment