blogin/migrations/1.sql

6 lines
104 B
MySQL
Raw Normal View History

2024-12-29 01:07:20 +03:00
CREATE TABLE posts (
username TEXT UNIQUE NOT NULL,
contents TEXT NOT NULL,
ts TIMESTAMP NOT NULL
);