You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
987 B
35 lines
987 B
2 years ago
|
/*
|
||
|
Navicat Premium Data Transfer
|
||
|
|
||
|
Source Server : 10.8.30.156
|
||
|
Source Server Type : PostgreSQL
|
||
|
Source Server Version : 100019
|
||
|
Source Host : 10.8.30.156:5432
|
||
|
Source Catalog : inspection
|
||
|
Source Schema : public
|
||
|
|
||
|
Target Server Type : PostgreSQL
|
||
|
Target Server Version : 100019
|
||
|
File Encoding : 65001
|
||
|
|
||
|
Date: 03/03/2023 09:20:08
|
||
|
*/
|
||
|
|
||
|
|
||
|
-- ----------------------------
|
||
|
-- Table structure for report_serial
|
||
|
-- ----------------------------
|
||
|
DROP TABLE IF EXISTS "public"."report_serial";
|
||
|
CREATE TABLE "public"."report_serial" (
|
||
|
"project_id" int4 NOT NULL,
|
||
|
"serial_no" int4
|
||
|
)
|
||
|
;
|
||
|
COMMENT ON COLUMN "public"."report_serial"."project_id" IS '结构物id';
|
||
|
COMMENT ON COLUMN "public"."report_serial"."serial_no" IS '报告序号';
|
||
|
|
||
|
-- ----------------------------
|
||
|
-- Primary Key structure for table report_serial
|
||
|
-- ----------------------------
|
||
|
ALTER TABLE "public"."report_serial" ADD CONSTRAINT "report_serial_pkey" PRIMARY KEY ("project_id");
|