-- serial 代表自增,本质上也是个int类型 create table cti_vccinfo_new ( vccid serial not null, vccname VARCHAR(255), effective INTEGER default 0 not null, agentmax INTEGER default 0 not null, ivrmax INTEGER default 0 not null, updatekey VARCHAR(30), tclob text null, tblob bytea null, primary key (vccid) constraint PK_CTI_VI_new ); -- 对接proxy,现在 dml 的 crud的sql都能正常识别并运行 -- ddl语句还在测试中