This repository has been archived on 2026-04-30. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
kingdombattles/sql/update.sql
T

19 lines
255 B
SQL

#NOTE: ALWAYS, ALWAYS, ALWAYS write a script in revert.sql that undoes these changes
ALTER TABLE
profiles
ADD COLUMN
ladderRank INTEGER UNSIGNED
AFTER
accountId
;
ALTER TABLE
profiles
ADD COLUMN
ladderRankWeight FLOAT UNSIGNED
AFTER
ladderRank
;