From 88d85a02f0f8799cb6b39c857a510e3b5d99171e Mon Sep 17 00:00:00 2001 From: Baitinq Date: Tue, 28 May 2024 19:54:02 +0200 Subject: supabase: add api_keys table migration --- supabase/migrations/20240528175243_create_api_keys_table.sql | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 supabase/migrations/20240528175243_create_api_keys_table.sql (limited to 'supabase') diff --git a/supabase/migrations/20240528175243_create_api_keys_table.sql b/supabase/migrations/20240528175243_create_api_keys_table.sql new file mode 100644 index 0000000..5efa946 --- /dev/null +++ b/supabase/migrations/20240528175243_create_api_keys_table.sql @@ -0,0 +1,4 @@ +CREATE TABLE IF NOT EXISTS private.api_keys ( + id UUID NOT NULL REFERENCES auth.users, + api_key CHAR(44) NOT NULL +); -- cgit 1.4.1