Skip to content
Snippets Groups Projects
Commit 1d2ac846 authored by satwikShresth's avatar satwikShresth
Browse files

removing unneeded stuff

parent b66c5ed8
Branches
No related tags found
No related merge requests found
......@@ -107,7 +107,6 @@ clean:
rm -rf S3/data
@echo "Docker cleanup complete"
# Migrate database
db-migrate:
@echo "Running database migrations..."
......
......
import { Config, defineConfig } from 'drizzle-kit';
export default defineConfig({
dialect: 'postgresql',
out: './database/migrations',
schema: './database/schema/index.ts',
casing: 'snake_case',
dbCredentials: {
user: 'postgres',
password: 'postgres',
database: 'inspiration',
host: 'localhost',
port: 5432,
ssl: false,
},
verbose: true,
strict: true,
}) satisfies Config;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment