diff options
Diffstat (limited to 'db/init.sql')
-rw-r--r-- | db/init.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/db/init.sql b/db/init.sql index f1c3506..c842e52 100644 --- a/db/init.sql +++ b/db/init.sql @@ -8,7 +8,7 @@ create table if not exists webs.category ( create table if not exists webs.product ( `ID` int not null auto_increment, - `name` varchar(45) not null, + `name` varchar(255) not null, `price` decimal(5, 2) not null, `image` mediumblob null default null, `category` int not null, |