Files
php_8/postgresql/articles.sql
2022-06-06 13:04:56 +03:00

9 lines
140 B
SQL

CREATE TABLE articles (
id SERIAL,
title VARCHAR(40),
body TEXT,
user_id INTEGER,
created_at TIMESTAMP,
updated_at TIMESTAMP
);