mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-13 22:42:38 -05:00
* Add abilityPoints migration * Initial stats * Build stats UI * Add TODO * Update css file name * Popular builds page
6 lines
210 B
JavaScript
6 lines
210 B
JavaScript
module.exports.up = function (db) {
|
|
db.prepare(
|
|
/* sql */ `alter table "BuildAbility" add "abilityPoints" integer generated always as (case when "slotIndex" = 0 then 10 else 3 end) virtual`
|
|
).run();
|
|
};
|