This commit is contained in:
Li 2022-07-17 15:10:39 +12:00
parent a501f5886c
commit c703d5b7f7
13 changed files with 20 additions and 10 deletions

View 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";