diff options
author | lonkaars <loek@pipeframe.xyz> | 2023-05-08 12:56:10 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2023-05-08 12:56:10 +0200 |
commit | 14997bb700d5bc30d69a48294ae26a7e566939c5 (patch) | |
tree | 9ee4b4903467fc9ba94cc3f5911b49af6480a6ec /db/init.sql | |
parent | 25b6b8926d8cb3c4cabc8e7764e613d3bb4e4ed7 (diff) |
dummy data
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, |