mirror of
https://git.asonix.dog/asonix/relay.git
synced 2024-12-01 22:11:13 +00:00
11 lines
319 B
SQL
11 lines
319 B
SQL
-- Your SQL goes here
|
|
CREATE TABLE whitelists (
|
|
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
|
actor_id TEXT UNIQUE NOT NULL,
|
|
created_at TIMESTAMP NOT NULL,
|
|
updated_at TIMESTAMP NOT NULL
|
|
);
|
|
|
|
CREATE INDEX whitelists_actor_id_index ON whitelists(actor_id);
|
|
|
|
SELECT diesel_manage_updated_at('whitelists');
|