happy ending

This commit is contained in:
baroni31
2026-05-20 22:08:30 +01:00
parent 3b93cffd38
commit 20f3c821ca
24 changed files with 60 additions and 56 deletions

View File

@@ -0,0 +1 @@
v2.100.1

View File

@@ -0,0 +1 @@
v2.189.0

View File

@@ -0,0 +1 @@
{"ref":"vnpqjabecckhtceggtgx","name":"yungRiotz","organization_id":"niudpdfrwvevpdpprrlr","organization_slug":"niudpdfrwvevpdpprrlr"}

View File

@@ -0,0 +1 @@
postgresql://postgres.vnpqjabecckhtceggtgx@aws-1-eu-central-1.pooler.supabase.com:5432/postgres

View File

@@ -0,0 +1 @@
17.6.1.121

View File

@@ -0,0 +1 @@
vnpqjabecckhtceggtgx

View File

@@ -0,0 +1 @@
v14.5

View File

@@ -0,0 +1 @@
optimize-existing-functions-again

View File

@@ -0,0 +1 @@
v1.58.17

View File

@@ -20,6 +20,15 @@ begin
end;
$$;
-- =========================
-- Tables
-- =========================
create table if not exists public.admin_users (
user_id uuid primary key references auth.users(id) on delete cascade,
created_at timestamptz not null default timezone('utc', now())
);
create or replace function public.is_admin(_uid uuid)
returns boolean
language sql
@@ -32,15 +41,6 @@ as $$
);
$$;
-- =========================
-- Tables
-- =========================
create table if not exists public.admin_users (
user_id uuid primary key references auth.users(id) on delete cascade,
created_at timestamptz not null default timezone('utc', now())
);
create table if not exists public.profiles (
user_id uuid primary key references auth.users(id) on delete cascade,
username citext not null unique,