├── .gitignore ├── biome.json ├── examples └── postgres │ ├── docker-compose.yaml │ ├── drizzle.config.ts │ ├── package.json │ ├── src │ ├── migrations │ │ ├── 20250609_092806_init_migrations.json │ │ ├── 20250609_092806_init_migrations.ts │ │ ├── 20250609_092834_another_one.json │ │ └── 20250609_092834_another_one.ts │ ├── schema.ts │ └── seeders │ │ ├── admin-seeder.ts │ │ └── db-seeder.ts │ └── tsconfig.json ├── package.json ├── packages └── drizzle-migrations │ ├── .npmignore │ ├── package.json │ ├── readme.md │ ├── src │ ├── cli-entry.ts │ ├── commands │ │ ├── _base.command.ts │ │ ├── migration-down.command.ts │ │ ├── migration-generate.command.ts │ │ ├── migration-status.command.ts │ │ ├── migration-up.command.ts │ │ ├── seed-create.command.ts │ │ └── seed-run.command.ts │ ├── helpers │ │ ├── db-helpers.ts │ │ ├── drizzle-config.ts │ │ ├── migration.ts │ │ ├── misc-utils.ts │ │ └── seed.ts │ ├── index.ts │ └── seed │ │ ├── _base.seeder.ts │ │ ├── seed-runner.ts │ │ └── test.ts │ ├── tsconfig.json │ └── tsup.config.ts ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── readme.md └── turbo.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drepkovsky/drizzle-migrations/HEAD/.gitignore -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drepkovsky/drizzle-migrations/HEAD/biome.json -------------------------------------------------------------------------------- /examples/postgres/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drepkovsky/drizzle-migrations/HEAD/examples/postgres/docker-compose.yaml -------------------------------------------------------------------------------- /examples/postgres/drizzle.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drepkovsky/drizzle-migrations/HEAD/examples/postgres/drizzle.config.ts -------------------------------------------------------------------------------- /examples/postgres/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drepkovsky/drizzle-migrations/HEAD/examples/postgres/package.json -------------------------------------------------------------------------------- /examples/postgres/src/migrations/20250609_092806_init_migrations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drepkovsky/drizzle-migrations/HEAD/examples/postgres/src/migrations/20250609_092806_init_migrations.json -------------------------------------------------------------------------------- /examples/postgres/src/migrations/20250609_092806_init_migrations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drepkovsky/drizzle-migrations/HEAD/examples/postgres/src/migrations/20250609_092806_init_migrations.ts -------------------------------------------------------------------------------- /examples/postgres/src/migrations/20250609_092834_another_one.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drepkovsky/drizzle-migrations/HEAD/examples/postgres/src/migrations/20250609_092834_another_one.json -------------------------------------------------------------------------------- /examples/postgres/src/migrations/20250609_092834_another_one.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drepkovsky/drizzle-migrations/HEAD/examples/postgres/src/migrations/20250609_092834_another_one.ts -------------------------------------------------------------------------------- /examples/postgres/src/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drepkovsky/drizzle-migrations/HEAD/examples/postgres/src/schema.ts -------------------------------------------------------------------------------- /examples/postgres/src/seeders/admin-seeder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drepkovsky/drizzle-migrations/HEAD/examples/postgres/src/seeders/admin-seeder.ts -------------------------------------------------------------------------------- /examples/postgres/src/seeders/db-seeder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drepkovsky/drizzle-migrations/HEAD/examples/postgres/src/seeders/db-seeder.ts -------------------------------------------------------------------------------- /examples/postgres/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drepkovsky/drizzle-migrations/HEAD/examples/postgres/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drepkovsky/drizzle-migrations/HEAD/package.json -------------------------------------------------------------------------------- /packages/drizzle-migrations/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drepkovsky/drizzle-migrations/HEAD/packages/drizzle-migrations/.npmignore -------------------------------------------------------------------------------- /packages/drizzle-migrations/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drepkovsky/drizzle-migrations/HEAD/packages/drizzle-migrations/package.json -------------------------------------------------------------------------------- /packages/drizzle-migrations/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drepkovsky/drizzle-migrations/HEAD/packages/drizzle-migrations/readme.md -------------------------------------------------------------------------------- /packages/drizzle-migrations/src/cli-entry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drepkovsky/drizzle-migrations/HEAD/packages/drizzle-migrations/src/cli-entry.ts -------------------------------------------------------------------------------- /packages/drizzle-migrations/src/commands/_base.command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drepkovsky/drizzle-migrations/HEAD/packages/drizzle-migrations/src/commands/_base.command.ts -------------------------------------------------------------------------------- /packages/drizzle-migrations/src/commands/migration-down.command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drepkovsky/drizzle-migrations/HEAD/packages/drizzle-migrations/src/commands/migration-down.command.ts -------------------------------------------------------------------------------- /packages/drizzle-migrations/src/commands/migration-generate.command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drepkovsky/drizzle-migrations/HEAD/packages/drizzle-migrations/src/commands/migration-generate.command.ts -------------------------------------------------------------------------------- /packages/drizzle-migrations/src/commands/migration-status.command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drepkovsky/drizzle-migrations/HEAD/packages/drizzle-migrations/src/commands/migration-status.command.ts -------------------------------------------------------------------------------- /packages/drizzle-migrations/src/commands/migration-up.command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drepkovsky/drizzle-migrations/HEAD/packages/drizzle-migrations/src/commands/migration-up.command.ts -------------------------------------------------------------------------------- /packages/drizzle-migrations/src/commands/seed-create.command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drepkovsky/drizzle-migrations/HEAD/packages/drizzle-migrations/src/commands/seed-create.command.ts -------------------------------------------------------------------------------- /packages/drizzle-migrations/src/commands/seed-run.command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drepkovsky/drizzle-migrations/HEAD/packages/drizzle-migrations/src/commands/seed-run.command.ts -------------------------------------------------------------------------------- /packages/drizzle-migrations/src/helpers/db-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drepkovsky/drizzle-migrations/HEAD/packages/drizzle-migrations/src/helpers/db-helpers.ts -------------------------------------------------------------------------------- /packages/drizzle-migrations/src/helpers/drizzle-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drepkovsky/drizzle-migrations/HEAD/packages/drizzle-migrations/src/helpers/drizzle-config.ts -------------------------------------------------------------------------------- /packages/drizzle-migrations/src/helpers/migration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drepkovsky/drizzle-migrations/HEAD/packages/drizzle-migrations/src/helpers/migration.ts -------------------------------------------------------------------------------- /packages/drizzle-migrations/src/helpers/misc-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drepkovsky/drizzle-migrations/HEAD/packages/drizzle-migrations/src/helpers/misc-utils.ts -------------------------------------------------------------------------------- /packages/drizzle-migrations/src/helpers/seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drepkovsky/drizzle-migrations/HEAD/packages/drizzle-migrations/src/helpers/seed.ts -------------------------------------------------------------------------------- /packages/drizzle-migrations/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drepkovsky/drizzle-migrations/HEAD/packages/drizzle-migrations/src/index.ts -------------------------------------------------------------------------------- /packages/drizzle-migrations/src/seed/_base.seeder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drepkovsky/drizzle-migrations/HEAD/packages/drizzle-migrations/src/seed/_base.seeder.ts -------------------------------------------------------------------------------- /packages/drizzle-migrations/src/seed/seed-runner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drepkovsky/drizzle-migrations/HEAD/packages/drizzle-migrations/src/seed/seed-runner.ts -------------------------------------------------------------------------------- /packages/drizzle-migrations/src/seed/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drepkovsky/drizzle-migrations/HEAD/packages/drizzle-migrations/src/seed/test.ts -------------------------------------------------------------------------------- /packages/drizzle-migrations/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drepkovsky/drizzle-migrations/HEAD/packages/drizzle-migrations/tsconfig.json -------------------------------------------------------------------------------- /packages/drizzle-migrations/tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drepkovsky/drizzle-migrations/HEAD/packages/drizzle-migrations/tsup.config.ts -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drepkovsky/drizzle-migrations/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drepkovsky/drizzle-migrations/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drepkovsky/drizzle-migrations/HEAD/readme.md -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drepkovsky/drizzle-migrations/HEAD/turbo.json --------------------------------------------------------------------------------