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
e9f233f6
Commit
e9f233f6
authored
14 years ago
by
MELERIX
Browse files
Options
Downloads
Patches
Plain Diff
SQL: looks like this column is used for objectId instead of itemId.
parent
b85a7585
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
datapack_development/sql/character_offline_trade_items.sql
+1
-1
1 addition, 1 deletion
datapack_development/sql/character_offline_trade_items.sql
datapack_development/sql/updates/20110112update.sql
+1
-1
1 addition, 1 deletion
datapack_development/sql/updates/20110112update.sql
with
2 additions
and
2 deletions
datapack_development/sql/character_offline_trade_items.sql
+
1
−
1
View file @
e9f233f6
CREATE
TABLE
IF
NOT
EXISTS
`character_offline_trade_items`
(
CREATE
TABLE
IF
NOT
EXISTS
`character_offline_trade_items`
(
`charId`
int
(
10
)
unsigned
NOT
NULL
DEFAULT
'0'
,
`charId`
int
(
10
)
unsigned
NOT
NULL
DEFAULT
'0'
,
`item`
small
int
(
5
)
unsigned
NOT
NULL
DEFAULT
'0'
,
`item`
int
(
10
)
unsigned
NOT
NULL
DEFAULT
'0'
,
-- ObjectId
`count`
bigint
(
20
)
unsigned
NOT
NULL
DEFAULT
'0'
,
`count`
bigint
(
20
)
unsigned
NOT
NULL
DEFAULT
'0'
,
`price`
bigint
(
20
)
unsigned
NOT
NULL
DEFAULT
'0'
`price`
bigint
(
20
)
unsigned
NOT
NULL
DEFAULT
'0'
);
);
\ No newline at end of file
This diff is collapsed.
Click to expand it.
datapack_development/sql/updates/20110112update.sql
+
1
−
1
View file @
e9f233f6
ALTER
TABLE
`character_offline_trade_items`
ALTER
TABLE
`character_offline_trade_items`
MODIFY
`charId`
int
(
10
)
unsigned
NOT
NULL
DEFAULT
'0'
,
MODIFY
`charId`
int
(
10
)
unsigned
NOT
NULL
DEFAULT
'0'
,
MODIFY
`item`
small
int
(
5
)
unsigned
NOT
NULL
DEFAULT
'0'
,
MODIFY
`item`
int
(
10
)
unsigned
NOT
NULL
DEFAULT
'0'
,
MODIFY
`count`
bigint
(
20
)
unsigned
NOT
NULL
DEFAULT
'0'
,
MODIFY
`count`
bigint
(
20
)
unsigned
NOT
NULL
DEFAULT
'0'
,
MODIFY
`price`
bigint
(
20
)
unsigned
NOT
NULL
DEFAULT
'0'
,
MODIFY
`price`
bigint
(
20
)
unsigned
NOT
NULL
DEFAULT
'0'
,
DROP
PRIMARY
KEY
;
DROP
PRIMARY
KEY
;
\ 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