You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-- auto-generated definition
create table categories
(
id int auto_increment
primary key,
name varchar(256) not null,
description text not null,
created datetime not null,
modified timestamp default CURRENT_TIMESTAMP not null
)
engine = InnoDB;
-> Products Create DB
-- auto-generated definition
create table products
(
id int auto_increment
primary key,
name varchar(32) not null,
description text not null,
price decimal not null,
category_id int not null,
created datetime not null,
modified timestamp default CURRENT_TIMESTAMP not null
)
engine = InnoDB
charset = latin1;
-> User Create DB
-- auto-generated definition
create table user
(
id int auto_increment
primary key,
email varchar(250) null,
password varchar(250) not null,
token text null,
token_expire varchar(250) null
);