diff --git a/HorseIsleServer/migrate-1.2-to-1.8.sql b/HorseIsleServer/migrate-1.2-to-1.8.sql new file mode 100644 index 0000000..42e34a5 --- /dev/null +++ b/HorseIsleServer/migrate-1.2-to-1.8.sql @@ -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"; \ No newline at end of file diff --git a/HorseIsleWeb b/HorseIsleWeb index 5832207..bbc3c09 160000 --- a/HorseIsleWeb +++ b/HorseIsleWeb @@ -1 +1 @@ -Subproject commit 5832207d42d86e2a0bd38058cbc69d8eb496229f +Subproject commit bbc3c096700976aae689518857a43ae4f4f85075