13 lines
177 B
SQL
13 lines
177 B
SQL
--
|
|
--
|
|
--
|
|
--
|
|
create table llx_telephonie_ligne_statistique (
|
|
dates date,
|
|
statut smallint,
|
|
nb integer,
|
|
|
|
UNIQUE (dates, statut)
|
|
)type=innodb;
|
|
|