From cdaae64a7431af2bf6cb3c916f0e6bfbdd3fd93b Mon Sep 17 00:00:00 2001
From: vogelor <vogelor@ispconfig3>
Date: Sat, 01 May 2010 07:11:31 -0400
Subject: [PATCH] The Interface now supports the first remote-action : do OS-Update
---
install/sql/ispconfig3.sql | 16 ++++++++++++++++
1 files changed, 16 insertions(+), 0 deletions(-)
diff --git a/install/sql/ispconfig3.sql b/install/sql/ispconfig3.sql
index 709ce7a..e9db32e 100644
--- a/install/sql/ispconfig3.sql
+++ b/install/sql/ispconfig3.sql
@@ -1148,6 +1148,22 @@
`value` varchar(255) NOT NULL
) ENGINE=MyISAM;
+
+--
+-- Tabellenstruktur für Tabelle `sys_remoteaction`
+--
+
+CREATE TABLE `sys_remoteaction` (
+ `action_id` int(11) unsigned NOT NULL auto_increment,
+ `server_id` int(11) unsigned NOT NULL,
+ `tstamp` int(11) NOT NULL,
+ `action_type` varchar(20) NOT NULL,
+ `action_param` mediumtext NOT NULL,
+ `action_status` enum('pending','ok','warning','error') NOT NULL,
+ `response` mediumtext NOT NULL,
+ PRIMARY KEY (`action_id`)
+) ENGINE=MyISAM;
+
-- --------------------------------------------------------
--
--
Gitblit v1.9.1