Releases: orptech-com/laravel-migration-partition
v12.0.0
What's Changed
- Laravel 12 support
- Updated facades from Laravel 12's base schema facade
- Ability to not define primary keys, adapted from @briets's PR with minor tweaks. (#25)
- Bumped CI version for Dependabot
Important
Please do test your application on a safe environment before migrating to this new version. Do not apply this switch directly in production for your own safety.
Full Changelog: v11.0.0...v12.0.0
v11.0.0
What's Changed
- Jumped several major versions to match the version number of Laravel.
- Create _config.yml by @ArdaKaraderi in #31
- Update _config.yml by @ArdaKaraderi in #32
- Bump dependabot/fetch-metadata from 1.6.0 to 2.0.0 by @dependabot in #34
- Bump dependabot/fetch-metadata from 2.0.0 to 2.1.0 by @dependabot in #35
- Laravel 11.x Support by @ArdaKaraderi in #33
Full Changelog: v4.0.4...v11.0.0
v4.0.4
Updated the version to include minor changes on the README.md file.
v4.0.3
Merge pull request #20 from orptech-com/dependabot/github_actions/dep…
v4.0.2
Laravel 10 compatability.
v3.0.0
- Series partition creation commands for range, list and hash partitions.
- New naming convention in order to provide extendability.
- Ability to attach, and detach partitions.
- Support for native Illuminate methods.
- Updated README to provide more in-depth usage guidance.
This is a major release and is NOT backward compatible.
v2.0.0
- Changed the range partition naming convention.
- Added support for hash partitioning.
- Added support for list partitioning.
v1.0.6
Added attachPartition method.
v1.0.5
Added README.md indicators.
v1.0.4
In order to work with partitions, PostgreSQL requires tables to be created as "partitioned table", and it's impossible to convert a regular table into a partitioned one. Solutions on the internet show that people use raw queries to make their tables when they are using Laravel and PostgreSQL. They lose the beauty of Laravel and its features. With this package, users can use the new Schema static method to create their partitioned table.