stashing code
This commit is contained in:
14
packages/airportsdb/drizzle.config.ts
Normal file
14
packages/airportsdb/drizzle.config.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
import { defineConfig } from "drizzle-kit";
|
||||
|
||||
import "dotenv/config";
|
||||
|
||||
export default defineConfig({
|
||||
schema: "./schema",
|
||||
out: "./migrations",
|
||||
dialect: "postgresql",
|
||||
verbose: true,
|
||||
strict: false,
|
||||
dbCredentials: {
|
||||
url: process.env.AIRPORTS_DB_URL ?? "",
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user