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