Clean repo
This commit is contained in:
Binary file not shown.
@@ -1,5 +0,0 @@
|
||||
1、问题描述:
|
||||
在卸载office等应用或电脑崩溃后会出现缺VCRUNTIME140_1.dll的情况
|
||||
2、解决方法:
|
||||
64位的电脑把“VCRUNTIME140_1.dll”文件放到“C:\Windows\System32”文件夹里即可
|
||||
32位的电脑把“VCRUNTIME140_1.dll”文件放到“C:\Windows\SysWOW64”文件夹里即可
|
||||
Binary file not shown.
Binary file not shown.
36
table.sql
36
table.sql
@@ -1,36 +0,0 @@
|
||||
drop table if exists Link;
|
||||
drop table if exists Node;
|
||||
|
||||
drop type if exists EN_NodeType;
|
||||
create type EN_NodeType as enum (
|
||||
'EN_JUNCTION',
|
||||
'EN_RESERVOIR',
|
||||
'EN_TANK'
|
||||
);
|
||||
|
||||
drop type if exists EN_LinkType;
|
||||
create type EN_LinkType as enum (
|
||||
'EN_CVPIPE',
|
||||
'EN_PIPE',
|
||||
'EN_PUMP',
|
||||
'EN_PRV',
|
||||
'EN_PSV',
|
||||
'EN_PBV',
|
||||
'EN_FCV',
|
||||
'EN_TCV',
|
||||
'EN_GPV'
|
||||
);
|
||||
|
||||
create table Node (
|
||||
Id varchar(32) primary key,
|
||||
Type EN_NodeType not null,
|
||||
Coord point not null default(point(0.0, 0.0)),
|
||||
Elevation numeric not null default(0.0)
|
||||
);
|
||||
|
||||
create table Link (
|
||||
Id varchar(32) primary key,
|
||||
Type EN_LinkType not null,
|
||||
FromNode varchar(32) not null references Node(Id),
|
||||
ToNode varchar(32) not null references Node(Id)
|
||||
);
|
||||
Reference in New Issue
Block a user