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
create table users (id int primary key auto_increment not null, name varchar(20) not null, email varchar(40) unique, password varchar(200) not null, created_at timestamp not null default now(), updated_at timestamp not null default now() on update now())
alter table users add column phone varchar(10) unique not null;