· 7 years ago · Feb 27, 2019, 03:44 AM
1create database if not exists posts;
2
3use posts;
4
5create table if not exists posts(
6 id int auto_increment primary key,
7 # you could probably lock this down to the max length of uuid
8 user_id varchar(255),
9 post text
10);