mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-19 19:29:15 +12:00
Add 1.1 to 1.2 migration script
This commit is contained in:
parent
37102c24a3
commit
8246d0c0fc
3 changed files with 19 additions and 5 deletions
13
HorseIsleServer/migrate-1.1-to-1.2.sql
Normal file
13
HorseIsleServer/migrate-1.1-to-1.2.sql
Normal 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;
|
Loading…
Add table
Add a link
Reference in a new issue