Releases: robinNcode/db_craft
`fix`: Seeder template and seeder foreign key checks
The following issues have been fixed with this release.
- Skip the migrations table from seed generation.
- Foreign key check for seeder.
thanks @Neo2SHYAlien
`fix`: columnName and foreignColumnName fetching
The following bug is fixed now: #5
fix: default value null exception
isCustomDefaultValue method bug of "default value null exception"
Default value current_timestamp fix
- 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
-
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.