Schema diff between the compare branch (preview/pr-9-feat/add-soft-delete) and the base branch (main).
- Base branch: main (br-crimson-mode-a5j632xb) 🔒
- Compare branch: preview/pr-9-feat/add-soft-delete (br-misty-resonance-a5jvokot)
- Database: neondb
Index: neondb-schema.sql
===================================================================
--- neondb-schema.sql Branch main
+++ neondb-schema.sql Branch preview/pr-9-feat/add-soft-delete
@@ -111,9 +111,10 @@
title text NOT NULL,
content text NOT NULL,
user_id integer NOT NULL,
created_at timestamp without time zone DEFAULT now() NOT NULL,
- updated_at timestamp without time zone DEFAULT now() NOT NULL
+ updated_at timestamp without time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp without time zone
);
ALTER TABLE public.posts OWNER TO neondb_owner;
@@ -180,5 +181,5 @@
--
-- Name: __drizzle_migrations id; Type: DEFAULT; Schema: drizzle; Owner: neondb_owner
--
-ALTER TABLE ONLY drizzle.__drizzle_migrations ALTER COLUMN id SET DEFAULT nextval('drizzle.__drizzle_m
\ No newline at end of file
+ALTER TABLE ONLY drizzle.__drizzle_migrations ALTER COLUMN
\ No newline at end of file
This comment was last updated at 11/20/2024 10:05:59 AM