From 86e42bb986a5b11f56a229b4d9aea4642b421a8b Mon Sep 17 00:00:00 2001 From: hide_d Date: Wed, 21 Feb 2018 22:42:57 +0900 Subject: [PATCH] =?UTF-8?q?message=20db=20schema=EC=97=90=20valid=5Funtil?= =?UTF-8?q?=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- twe/schema.php | 1 + 1 file changed, 1 insertion(+) diff --git a/twe/schema.php b/twe/schema.php index ca2ebe36..2ec07c19 100644 --- a/twe/schema.php +++ b/twe/schema.php @@ -540,6 +540,7 @@ CREATE TABLE `message` ( `src` INT(11) NOT NULL, `dest` INT(11) NOT NULL, `time` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, + `valid_until` DATETIME NOT NULL DEFAULT '9999-12-31 23:59:59', `message` TEXT NOT NULL COMMENT 'json', PRIMARY KEY (`id`), INDEX `by_owner` (`mailbox`, `time`),