1--Dictionary of package type
2create table llx_c_shipment_package_type
3(
4    rowid        integer  AUTO_INCREMENT PRIMARY KEY,
5    label        varchar(50) NOT NULL,  -- Short name
6    description	 varchar(255), -- Description
7    active       integer DEFAULT 1 NOT NULL, -- Active or not
8    entity       integer DEFAULT 1 NOT NULL -- Multi company id
9)ENGINE=innodb;
10