mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 21:25:42 +12:00
Add new migrate script
This commit is contained in:
parent
219c9fa95a
commit
95f83cd547
2 changed files with 14 additions and 1 deletions
13
HorseIsleServer/migrate-1.2-to-1.8.sql
Normal file
13
HorseIsleServer/migrate-1.2-to-1.8.sql
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
## Written by SilicaAndPina,
|
||||||
|
## This Script is entered into the Public Domain!
|
||||||
|
## HISP v1.2 to v1.8 migration script...
|
||||||
|
|
||||||
|
# To use this script you must find/replace
|
||||||
|
# 'master' to your game db name
|
||||||
|
USE master;
|
||||||
|
|
||||||
|
# Add new colums
|
||||||
|
ALTER TABLE Users ADD COLUMN EmailActivated TEXT(3);
|
||||||
|
|
||||||
|
# Initalize new colum data.
|
||||||
|
UPDATE Users SET EmailActivated="YES";
|
|
@ -1 +1 @@
|
||||||
Subproject commit 5832207d42d86e2a0bd38058cbc69d8eb496229f
|
Subproject commit bbc3c096700976aae689518857a43ae4f4f85075
|
Loading…
Add table
Reference in a new issue