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.
db-schema/db_scripts/diff/15049.up

10 lines
249 B

USE accounting;
CREATE TABLE acc_cdi (
id int(10) UNSIGNED AUTO_INCREMENT NOT NULL,
callid varchar(255) NOT NULL,
mark decimal(13,3) NOT NULL,
PRIMARY KEY (id),
UNIQUE KEY acc_cdi_callid_idx (callid)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;