Files
DLE/backend/db/migrations/024_create_ipfs_publications.sql

6 lines
156 B
SQL

CREATE TABLE IF NOT EXISTS ipfs_publications (
id SERIAL PRIMARY KEY,
cid TEXT NOT NULL,
url TEXT NOT NULL,
published_at TIMESTAMP DEFAULT NOW()
);