l2j_mobius/L2J_Mobius_C4/dist/db_installer/sql/posts.sql
2017-07-19 21:24:06 +00:00

13 lines
455 B
SQL

-- ---------------------------
-- Table structure for posts
-- ---------------------------
CREATE TABLE IF NOT EXISTS `posts` (
`post_id` int(8) NOT NULL default '0',
`post_owner_name` varchar(255) NOT NULL default '',
`post_ownerid` int(8) NOT NULL default '0',
`post_date` decimal(20,0) NOT NULL default '0',
`post_topic_id` int(8) NOT NULL default '0',
`post_forum_id` int(8) NOT NULL default '0',
`post_txt` text NOT NULL
);