Updated the invoice column to support more data

This commit is contained in:
Erik Thuning 2020-11-30 11:04:35 +01:00
parent f3ee75c15b
commit 3bb3484724

@ -3,7 +3,7 @@ create table `product` (
primary key(`id`),
`brand` varchar(64) not null,
`name` varchar(64) not null,
`invoice` varchar(64) not null,
`invoice` varchar(256) not null,
`serial` varchar(64) not null,
unique `uniq_serial`(`serial`),
`createtime` bigint(20) not null,