openrsc-core/server/database/mysql/addons/add_runecraft.sql
2021-07-16 00:37:23 +00:00

8 lines
307 B
SQL

ALTER TABLE `curstats`
ADD `runecraft` tinyint(3) UNSIGNED NOT NULL DEFAULT 1;
ALTER TABLE `experience`
ADD`runecraft` int(9) NOT NULL DEFAULT 0;
ALTER TABLE `maxstats`
ADD `runecraft` tinyint(3) UNSIGNED NOT NULL DEFAULT 1;
ALTER TABLE `capped_experience`
ADD `runecraft` int(10) UNSIGNED;