Aymeric Rabot
Aymeric Rabot
Installing Supabase CLI and running it locally in Docker produces the following ```bash DATABASE_URL="postgresql://postgres:[email protected]:54322/postgres" ``` Different from the Kirimase default: ``` DATABASE_URL="postgres://postgres:postgres@localhost:5432/{DB_NAME}" ```
This would be great. Like @SebastianGarces mentioned: For Postgres specifically, it would be great if we had the native table inheritance: https://www.postgresql.org/docs/current/tutorial-inheritance.html ```sql CREATE TABLE cities ( name text, population...
This topic is also discussed here #6719
**Suggestions:** Add dependencies for extensions, such as declaring schemas, so they would end up in the migrations. Example: ```javascript import { env } from "@/env.mjs" import { drizzle } from...