Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
L2j Server Datapack
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
L2j
L2j Server Datapack
Commits
da401c14
Commit
da401c14
authored
9 years ago
by
Zoey76
Browse files
Options
Downloads
Patches
Plain Diff
DataPack part for
L2J/L2J_Server@ba8f5f3c0279b76021cecb0910d23ee0b45e06c3
parent
99d32513
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
L2J_DataPack/dist/sql/game/characters.sql
+1
-1
1 addition, 1 deletion
L2J_DataPack/dist/sql/game/characters.sql
L2J_DataPack/dist/sql/game/updates/20150705update.sql
+1
-0
1 addition, 0 deletions
L2J_DataPack/dist/sql/game/updates/20150705update.sql
with
2 additions
and
1 deletion
L2J_DataPack/dist/sql/game/characters.sql
+
1
−
1
View file @
da401c14
...
...
@@ -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`
),
...
...
This diff is collapsed.
Click to expand it.
L2J_DataPack/dist/sql/game/updates/20150705update.sql
0 → 100644
+
1
−
0
View file @
da401c14
ALTER
TABLE
`characters`
CHANGE
COLUMN
`createDate`
`createDate`
TIMESTAMP
NOT
NULL
DEFAULT
CURRENT_TIMESTAMP
AFTER
`vitality_points`
;
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment