Plume/migrations/sqlite/2018-09-02-111458_create_medias/up.sql
Igor Galić 88456faf84
align types between sqlite & postgres
this one's achieved by adding "NOT NULL" at the *correct* position in
SQLite's create tables.
2018-09-30 14:13:53 +02:00

12 lines
380 B
SQL

-- Your SQL goes here
CREATE TABLE medias (
id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
file_path TEXT NOT NULL DEFAULT '',
alt_text TEXT NOT NULL DEFAULT '',
is_remote BOOLEAN NOT NULL DEFAULT 'f',
remote_url TEXT,
sensitive BOOLEAN NOT NULL DEFAULT 'f',
content_warning TEXT,
owner_id INTEGER REFERENCES users(id) ON DELETE CASCADE NOT NULL
)