You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pixelfed/database
Your Name cd4d9e5f36 Fix index migrations to support PostgreSQL and MariaDB
The three recent index migrations used raw MySQL-only DDL (backtick
identifiers, ADD INDEX inside ALTER TABLE, ALGORITHM=INPLACE/LOCK=NONE)
guarded only against sqlite, so PostgreSQL instances failed with
SQLSTATE[42601] on migrate (#7177).

Each migration now branches on the driver:
- mysql/mariadb keep the online-DDL fast path (non-blocking on large
  instances)
- other drivers use the portable Schema::table builder

Table names, index names, and columns are unchanged so already-migrated
MySQL instances are unaffected.
2 weeks ago
..
factories Remove unnecessary $model property from factories 3 weeks ago
migrations Fix index migrations to support PostgreSQL and MariaDB 2 weeks ago
seeders chore: uplift framework skeleton toward Laravel 12 defaults 3 weeks ago
.gitignore Add Laravel Framework 9 years ago