Add 1.1 to 1.2 migration script

This commit is contained in:
Bluzume 2021-11-27 16:15:13 -05:00
parent 37102c24a3
commit 8246d0c0fc
3 changed files with 19 additions and 5 deletions

View file

@ -0,0 +1,13 @@
## Written by SilicaAndPina,
## This Script is entered into the Public Domain!
## HISP v1.1 to v1.2 migration script...
# To use this script you must find/replace
# 'game1' to your game db name
USE game1;
# Add new colums
ALTER TABLE ShopInventory ADD COLUMN Data INT;
# Initalize new colum data.
UPDATE ShopInventory SET Data=0;