mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-10 03:01:01 +00:00
9 lines
140 B
SQL
9 lines
140 B
SQL
CREATE TABLE articles (
|
|
id SERIAL,
|
|
title VARCHAR(40),
|
|
body TEXT,
|
|
user_id INTEGER,
|
|
created_at TIMESTAMP,
|
|
updated_at TIMESTAMP
|
|
);
|