Skip to content
Snippets Groups Projects
Commit da401c14 authored by Zoey76's avatar Zoey76
Browse files

DataPack part for

L2J/L2J_Server@ba8f5f3c0279b76021cecb0910d23ee0b45e06c3
parent 99d32513
No related branches found
No related tags found
No related merge requests found
......@@ -53,7 +53,7 @@ CREATE TABLE IF NOT EXISTS `characters` (
`death_penalty_level` SMALLINT UNSIGNED NOT NULL DEFAULT 0,
`bookmarkslot` SMALLINT UNSIGNED NOT NULL DEFAULT 0,
`vitality_points` SMALLINT UNSIGNED NOT NULL DEFAULT 0,
`createDate` date NOT NULL DEFAULT '0000-00-00',
`createDate` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
`language` VARCHAR(2) DEFAULT NULL,
PRIMARY KEY (`charId`),
KEY `account_name` (`account_name`),
......
ALTER TABLE `characters` CHANGE COLUMN `createDate` `createDate` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP AFTER `vitality_points`;
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment