9 lines
256 B
TypeScript
9 lines
256 B
TypeScript
import {defineConfig} from "drizzle-kit";
|
|
export default defineConfig({
|
|
dialect: "postgresql", // 'mysql' | 'sqlite' | 'turso'
|
|
schema: "./schema",
|
|
dbCredentials: {
|
|
url: "postgresql://postgres:nova0511@localhost:5432/lst_db",
|
|
},
|
|
});
|