mirror of
https://github.com/System-End/plura.git
synced 2026-04-19 22:05:08 +00:00
7 lines
187 B
SQL
Executable file
7 lines
187 B
SQL
Executable file
-- Add migration script here
|
|
CREATE TABLE system_oauth_process (
|
|
id INTEGER NOT NULL PRIMARY KEY,
|
|
owner_id TEXT UNIQUE NOT NULL,
|
|
name TEXT NOT NULL,
|
|
csrf TEXT NOT NULL
|
|
);
|