presentation-rust-webapps/simpler_text_board/migrations/2021-04-14-185257_posts/up.sql

8 lines
155 B
MySQL
Raw Normal View History

2021-04-14 23:02:09 +02:00
CREATE TABLE posts (
id INTEGER NOT NULL PRIMARY KEY,
author VARCHAR NOT NULL,
email VARCHAR NOT NULL,
title VARCHAR NOT NULL,
content VARCHAR NOT NULL
);