Files
website/api/sql/news.sql
2025-01-09 00:30:59 +03:00

8 lines
170 B
SQL

CREATE TABLE IF NOT EXISTS news(
id TEXT NOT NULL UNIQUE,
title TEXT NOT NULL,
author TEXT NOT NULL,
time INTEGER NOT NULL,
content TEXT NOT NULL
);