mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-11-26 00:10:55 +01:00
Added pm
table
This commit is contained in:
parent
f420cb5824
commit
aed5354cff
20
install.sql
20
install.sql
@ -52,6 +52,26 @@ CREATE TABLE IF NOT EXISTS `bans` (
|
|||||||
-- Dumping data for table `bans`
|
-- Dumping data for table `bans`
|
||||||
--
|
--
|
||||||
|
|
||||||
|
-- --------------------------------------------------------
|
||||||
|
|
||||||
|
--
|
||||||
|
-- Table structure for table `pms`
|
||||||
|
--
|
||||||
|
|
||||||
|
CREATE TABLE IF NOT EXISTS `pms` (
|
||||||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||||
|
`sender` int(11) NOT NULL,
|
||||||
|
`to` int(11) NOT NULL,
|
||||||
|
`message` text NOT NULL,
|
||||||
|
`time` int(11) NOT NULL,
|
||||||
|
`unread` tinyint(1) NOT NULL,
|
||||||
|
PRIMARY KEY (`id`),
|
||||||
|
UNIQUE KEY `id` (`id`)
|
||||||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
|
||||||
|
|
||||||
|
--
|
||||||
|
-- Dumping data for table `pms`
|
||||||
|
--
|
||||||
|
|
||||||
-- --------------------------------------------------------
|
-- --------------------------------------------------------
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user