Skip to content
This repository has been archived by the owner on Sep 19, 2024. It is now read-only.

Commit

Permalink
chore: changed int4 to int8 for location columns
Browse files Browse the repository at this point in the history
  • Loading branch information
gentlementlegen committed Mar 29, 2024
1 parent 84eb70b commit 769cd98
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions supabase/migrations/20240313073422_init.sql
Original file line number Diff line number Diff line change
Expand Up @@ -102,11 +102,11 @@ create table "public"."locations" (
"updated" timestamp with time zone,
"created" timestamp with time zone not null default now(),
"node_url" text,
"user_id" integer,
"repository_id" integer,
"organization_id" integer,
"comment_id" integer,
"issue_id" integer
"user_id" bigint,
"repository_id" bigint,
"organization_id" bigint,
"comment_id" bigint,
"issue_id" bigint
);


Expand Down Expand Up @@ -180,7 +180,7 @@ create table "public"."tokens" (
alter table "public"."tokens" enable row level security;

create table "public"."users" (
"id" integer not null default nextval('users_id_seq'::regclass),
"id" bigint not null default nextval('users_id_seq'::regclass),
"created" timestamp with time zone not null default now(),
"updated" timestamp with time zone,
"wallet_id" integer,
Expand Down Expand Up @@ -960,11 +960,11 @@ grant truncate on table "public"."wallets" to "service_role";
grant update on table "public"."wallets" to "service_role";

create policy "Enable read access for all users"
on "public"."permits"
as permissive
for select
to public
using (true);
on "public"."permits"
as permissive
for select
to public
using (true);

create policy "Enable read access for all users"
on "public"."locations"
Expand Down

0 comments on commit 769cd98

Please sign in to comment.