Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
radames/news-api
Nymbo
/
news-api
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
11b7146
news-api
/
schema.sql
radames
first
8f4b172
11 months ago
raw
Copy download link
history
blame
Safe
248 Bytes
PRAGMA foreign_keys
=
OFF;
BEGIN
TRANSACTION;
CREATE
TABLE
cache (
id
INTEGER
PRIMARY
KEY AUTOINCREMENT,
url TEXT
NOT
NULL
,
title TEXT
NOT
NULL
,
entries json,
created_at
TIMESTAMP
DEFAULT
CURRENT_TIMESTAMP
NOT
NULL
);
COMMIT
;