Skip to content

Releases: robinNcode/db_craft

`fix`: Seeder template and seeder foreign key checks

01 Oct 17:02

Choose a tag to compare

The following issues have been fixed with this release.

  1. Skip the migrations table from seed generation.
  2. Foreign key check for seeder.

thanks @Neo2SHYAlien

`fix`: columnName and foreignColumnName fetching

09 Jun 23:54

Choose a tag to compare

The following bug is fixed now: #5

fix: default value null exception

23 Jul 06:27

Choose a tag to compare

isCustomDefaultValue method bug of "default value null exception"

Default value current_timestamp fix

22 Jul 19:47

Choose a tag to compare

  • In our previous version, our migration generator was unable to create a field that has the default value current_timestamp(). The issue has been fixed with this release.
  • Check the issue

First Release

29 May 11:19

Choose a tag to compare

  • Automatic Migration Generation: DB-Craft provides a simple command-line interface to generate migration files automatically based on the connected database. This feature allows developers to keep track of database schema changes and easily apply them to different environments.

  • Table-Specific Migrations: Developers can also generate migration files for specific tables, providing granular control over database changes. This flexibility allows for efficient database management and versioning.

  • Seeding Support: DB-Craft includes functionality to generate seeders, enabling developers to populate their database with initial data. This feature is especially useful for setting up sample data or populating reference tables.