relay/migrations/2020-03-14-213511_create_whitelists/up.sql

12 lines
319 B
MySQL
Raw Normal View History

2020-03-15 02:05:40 +00:00
-- 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');