import type { Config } from 'drizzle-kit';

// پیکربندی تولید مهاجرت‌ها؛ گویش هدف همیشه PostgreSQL است
// (چه روی سرور واقعی و چه روی PGlite در محیط توسعه محلی).
export default {
  schema: './src/database/schema/index.ts',
  out: './src/database/migrations',
  dialect: 'postgresql',
  dbCredentials: {
    url: process.env.DATABASE_URL ?? 'postgres://postgres:postgres@localhost:5432/shahrnama',
  },
} satisfies Config;
