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
235247e8
"...l2jserver/datapack/handlers/bypasshandlers/Multisell.java" did not exist on "64f4db543e33f16a0464fb4a02caf3a987c277cf"
Commit
235247e8
authored
14 years ago
by
JIV
Browse files
Options
Downloads
Patches
Plain Diff
char offline trade items fix. Thx denser & Punisher.
parent
0e118ff3
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
datapack_development/sql/character_offline_trade_items.sql
+4
-5
4 additions, 5 deletions
datapack_development/sql/character_offline_trade_items.sql
datapack_development/sql/updates/20110112update.sql
+6
-0
6 additions, 0 deletions
datapack_development/sql/updates/20110112update.sql
with
10 additions
and
5 deletions
datapack_development/sql/character_offline_trade_items.sql
+
4
−
5
View file @
235247e8
CREATE
TABLE
IF
NOT
EXISTS
`character_offline_trade_items`
(
CREATE
TABLE
IF
NOT
EXISTS
`character_offline_trade_items`
(
`charId`
int
(
10
)
NOT
NULL
DEFAULT
'0'
,
`charId`
int
(
10
)
UNSIGNED
NOT
NULL
DEFAULT
'0'
,
`item`
int
(
10
)
NOT
NULL
DEFAULT
'0'
,
`item`
int
(
10
)
UNSIGNED
NOT
NULL
DEFAULT
'0'
,
`count`
bigint
(
20
)
NOT
NULL
DEFAULT
'0'
,
`count`
bigint
(
20
)
UNSIGNED
NOT
NULL
DEFAULT
'0'
,
`price`
bigint
(
20
)
NOT
NULL
DEFAULT
'0'
,
`price`
bigint
(
20
)
UNSIGNED
NOT
NULL
DEFAULT
'0'
PRIMARY
KEY
(
`charId`
,
`item`
)
);
);
\ No newline at end of file
This diff is collapsed.
Click to expand it.
datapack_development/sql/updates/20110112update.sql
0 → 100644
+
6
−
0
View file @
235247e8
ALTER
TABLE
`character_offline_trade_items`
MODIFY
COLUMN
`charId`
int
(
10
)
UNSIGNED
NOT
NULL
DEFAULT
0
FIRST
,
MODIFY
COLUMN
`item`
int
(
10
)
UNSIGNED
NOT
NULL
DEFAULT
0
AFTER
`charId`
,
MODIFY
COLUMN
`count`
bigint
(
20
)
UNSIGNED
NOT
NULL
DEFAULT
0
AFTER
`item`
,
MODIFY
COLUMN
`price`
bigint
(
20
)
UNSIGNED
NOT
NULL
DEFAULT
0
AFTER
`count`
,
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