mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-23 03:46:28 -05:00
6 lines
199 B
JavaScript
6 lines
199 B
JavaScript
export function up(db) {
|
|
db.prepare(
|
|
/* sql */ `alter table "BuildAbility" add "abilityPoints" integer generated always as (case when "slotIndex" = 0 then 10 else 3 end) virtual`,
|
|
).run();
|
|
}
|