mirror of
https://codeberg.org/selfsigned-ash/antifed
synced 2026-07-21 18:49:34 +02:00
11 lines
347 B
SQL
11 lines
347 B
SQL
-- Your SQL goes here
|
|
|
|
CREATE TABLE IF NOT EXISTS actions
|
|
(
|
|
id UUID PRIMARY KEY NOT NULL UNIQUE DEFAULT gen_random_uuid(),
|
|
name TEXT NOT NULL,
|
|
source TEXT NOT NULL,
|
|
created_at TIMESTAMP NOT NULL DEFAULT now(),
|
|
updated_at TIMESTAMP NOT NULL DEFAULT now()
|
|
);
|