mirror of
https://github.com/System-End/plura.git
synced 2026-04-19 16:28:21 +00:00
9 lines
268 B
SQL
Executable file
9 lines
268 B
SQL
Executable file
-- Add migration script here
|
|
CREATE TABLE systems (
|
|
id INTEGER NOT NULL PRIMARY KEY,
|
|
owner_id TEXT UNIQUE NOT NULL,
|
|
name TEXT NOT NULL,
|
|
slack_oauth_token TEXT NOT NULL,
|
|
-- unix timestamp
|
|
created_at INTEGER DEFAULT CURRENT_TIMESTAMP NOT NULL
|
|
);
|