aboutsummaryrefslogtreecommitdiffstats
path: root/install/schema_mysql.sql
diff options
context:
space:
mode:
authorredmatrix <redmatrix@redmatrix.me>2015-05-28 16:59:56 -0700
committerredmatrix <redmatrix@redmatrix.me>2015-05-28 16:59:56 -0700
commit0f09a4499b462298ec18f7145c93410a0d62686b (patch)
tree2fa420fb319ad9fe5b8a5c98da28901dacefb84c /install/schema_mysql.sql
parent1a86e3321b124d2f01975301a88b8d42381d2339 (diff)
downloadvolse-hubzilla-0f09a4499b462298ec18f7145c93410a0d62686b.tar.gz
volse-hubzilla-0f09a4499b462298ec18f7145c93410a0d62686b.tar.bz2
volse-hubzilla-0f09a4499b462298ec18f7145c93410a0d62686b.zip
add menu_created, menu_edited fields to DB
Diffstat (limited to 'install/schema_mysql.sql')
-rw-r--r--install/schema_mysql.sql6
1 files changed, 5 insertions, 1 deletions
diff --git a/install/schema_mysql.sql b/install/schema_mysql.sql
index c2cefd07d..8e3d5a7b4 100644
--- a/install/schema_mysql.sql
+++ b/install/schema_mysql.sql
@@ -836,10 +836,14 @@ CREATE TABLE IF NOT EXISTS `menu` (
`menu_name` char(255) NOT NULL DEFAULT '',
`menu_desc` char(255) NOT NULL DEFAULT '',
`menu_flags` int(11) NOT NULL DEFAULT '0',
+ `menu_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+ `menu_edited` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`menu_id`),
KEY `menu_channel_id` (`menu_channel_id`),
KEY `menu_name` (`menu_name`),
- KEY `menu_flags` (`menu_flags`)
+ KEY `menu_flags` (`menu_flags`),
+ KEY `menu_created` (`menu_created`),
+ KEY `menu_edited` (`menu_edited`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------