Chronicle 4 branch.
This commit is contained in:
13
L2J_Mobius_C4/dist/db_installer/sql/topic.sql
vendored
Normal file
13
L2J_Mobius_C4/dist/db_installer/sql/topic.sql
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
-- ---------------------------
|
||||
-- Table structure for topic
|
||||
-- ---------------------------
|
||||
CREATE TABLE IF NOT EXISTS `topic` (
|
||||
`topic_id` int(8) NOT NULL default '0',
|
||||
`topic_forum_id` int(8) NOT NULL default '0',
|
||||
`topic_name` varchar(255) NOT NULL default '',
|
||||
`topic_date` decimal(20,0) NOT NULL default '0',
|
||||
`topic_ownername` varchar(255) NOT NULL default '0',
|
||||
`topic_ownerid` int(8) NOT NULL default '0',
|
||||
`topic_type` int(8) NOT NULL default '0',
|
||||
`topic_reply` int(8) NOT NULL default '0'
|
||||
);
|
Reference in New Issue
Block a user