laravel-mysql-partition icon indicating copy to clipboard operation
laravel-mysql-partition copied to clipboard

Useful Laravel package to easily work with MySQL Partition

Results 4 laravel-mysql-partition issues
Sort by recently updated
recently updated
newest added

Hi I can't seem to create a partition by range on a separate DB connection e.g. ``` Schema::connection('tracking')->partitionByRange('tracking', 'UNIX_TIMESTAMP(created_at)', [ new Partition('p'.$twodaysago, Partition::RANGE_TYPE, $twodaysago), new Partition('p'.$yesterday, Partition::RANGE_TYPE, $yesterday), new Partition('p'.$today,...

If I add any unique constraint then General error: 1503 A UNIQUE INDEX must include all columns in the table's partitioning function I got this error. Here is my migration...

Hey, we're using your package and we need to precise on which key our partitions will be based, that's why I made this change :) Tell me if you need...

I see in #16 Laravel 11 compatibility was added. However, there is no updated tag to package to grab via npm to use this. Could you add a tag/release for...