mirror of
https://github.com/Rogiel/l2jserver2
synced 2025-12-06 15:33:00 +00:00
SQL files moved to 'dist' folder
Signed-off-by: Rogiel <rogiel@rogiel.com>
This commit is contained in:
8
dist/sql/actor_skill.sql
vendored
Normal file
8
dist/sql/actor_skill.sql
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
CREATE TABLE IF NOT EXISTS `actor_skill` (
|
||||
`actor_id` int(10) NOT NULL,
|
||||
`skill_id` int(10) NOT NULL,
|
||||
`level` int(2) NOT NULL DEFAULT '1',
|
||||
PRIMARY KEY (`actor_id`,`skill_id`),
|
||||
KEY `actor_id` (`actor_id`),
|
||||
KEY `skill_id` (`skill_id`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
||||
Reference in New Issue
Block a user