sendou.ink/migrations/085-fix-badge-names.js
Kalle bda32b1fb8
Some checks are pending
Tests and checks on push / run-checks-and-tests (push) Waiting to run
Updates translation progress / update-translation-progress-issue (push) Waiting to run
Homemade badges format use .json + checks (#2225)
* wip

* wip

* test check

* Real name

* Done

* fix

* fix json
2025-04-27 12:14:14 +03:00

8 lines
173 B
JavaScript

export function up(db) {
db.transaction(() => {
db.prepare(
/* sql */ `update "Badge" set "code" = 'fl-collegiate' where "code" = 'FLcollegiate'`,
).run();
})();
}