60c6551b by 周伟奇

modify bigint

1 parent 1d152d72
......@@ -3,7 +3,7 @@ import pyodbc
hil_sql = """
create table hil_ocr_report
(
id int identity
id bigint identity
primary key,
case_number nvarchar(64) not null,
request_team tinyint default 0 not null,
......@@ -23,7 +23,7 @@ hil_sql = """
create table hil_compare_report
(
id int identity
id bigint identity
primary key,
case_number nvarchar(64) not null,
request_team tinyint default 0 not null,
......@@ -43,7 +43,7 @@ hil_sql = """
create table hil_compare_offline_report
(
id int identity
id bigint identity
primary key,
case_number nvarchar(255) not null,
request_team nvarchar(255) not null,
......@@ -65,7 +65,7 @@ hil_sql = """
afc_sql = """
create table afc_ocr_report
(
id int identity
id bigint identity
primary key,
case_number nvarchar(64) not null,
request_team tinyint default 0 not null,
......@@ -85,7 +85,7 @@ afc_sql = """
create table afc_compare_report
(
id int identity
id bigint identity
primary key,
case_number nvarchar(64) not null,
request_team tinyint default 0 not null,
......@@ -105,7 +105,7 @@ afc_sql = """
create table afc_compare_offline_report
(
id int identity
id bigint identity
primary key,
case_number nvarchar(255) not null,
request_team nvarchar(255) not null,
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!