mirror of
https://github.com/torrentpier/torrentpier
synced 2025-08-20 05:13:54 -07:00
r381
ALTER TABLE `bb_posts` ADD `user_post` TINYINT( 1 ) NOT NULL DEFAULT '1'; мои сообщения аля рутрекер (часть 1) git-svn-id: https://torrentpier2.googlecode.com/svn/trunk@381 a8ac35ab-4ca4-ca47-4c2d-a49a94f06293
This commit is contained in:
parent
cb1e567f6e
commit
85c0ee4559
5 changed files with 15 additions and 13 deletions
|
@ -917,6 +917,7 @@ CREATE TABLE `bb_posts` (
|
|||
`post_edit_count` smallint(5) unsigned NOT NULL default '0',
|
||||
`post_attachment` tinyint(1) NOT NULL default '0',
|
||||
`post_reported` tinyint(1) NOT NULL default '0',
|
||||
`user_post` tinyint(1) NOT NULL default '1',
|
||||
PRIMARY KEY (`post_id`),
|
||||
KEY `topic_id` (`topic_id`),
|
||||
KEY `poster_id` (`poster_id`),
|
||||
|
@ -928,7 +929,7 @@ CREATE TABLE `bb_posts` (
|
|||
-- Дамп данных таблицы `bb_posts`
|
||||
--
|
||||
|
||||
INSERT INTO `bb_posts` VALUES (1, 1, 1, 2, 1309421220, '', '', 0, 0, 0, 0);
|
||||
INSERT INTO `bb_posts` VALUES (1, 1, 1, 2, 1309421220, '', '', 0, 0, 0, 0, 1);
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue