create database blog;use blog;create table user( user_id int auto_increment, email varchar(50) unique not null, password varchar(50) not null, name varchar(50) not null, created_at timestamp default current_timestamp, primary key (user_id));create table post(post_id int auto_increment,user_id int,title varchar(50) not null,story text,created_at timestamp default current_timesta..