feat: Add creation_date column to characters table (#1825)

This commit is contained in:
José González 2019-05-12 17:09:49 -04:00 committed by GitHub
parent dd4d89294f
commit 2b4fb29c08
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,4 @@
INSERT INTO `version_db_characters` (`sql_rev`) VALUES ('1557608218190967100');
ALTER TABLE `characters`
ADD COLUMN `creation_date` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP AFTER `grantableLevels`;