Index: branches/camp/camp-2_5-E/data/class/pages/admin/system/LC_Page_Admin_System_Plugin.php
===================================================================
--- branches/camp/camp-2_5-E/data/class/pages/admin/system/LC_Page_Admin_System_Plugin.php	(revision 19191)
+++ branches/camp/camp-2_5-E/data/class/pages/admin/system/LC_Page_Admin_System_Plugin.php	(revision 19192)
@@ -43,4 +43,22 @@
      */
     function init() {
+                $query = new SC_Query();
+        $sql = <<< SQL
+    DROP TABLE IF EXISTS "dtb_plugin";
+CREATE TABLE "dtb_plugin" (
+  "id" int4 NOT NULL DEFAULT NULL,
+  "name" text NOT NULL DEFAULT NULL,
+  "enable" int2 NOT NULL DEFAULT 0,
+  "del_flg" int2 NOT NULL DEFAULT 0,
+  "class_name" text NOT NULL DEFAULT NULL,
+  "create_date" timestamp(6) NOT NULL DEFAULT now(),
+  "update_date" timestamp(6) NOT NULL DEFAULT now()
+)
+WITH (OIDS=FALSE);
+ALTER TABLE "dtb_plugin" ADD CONSTRAINT "dtb_plugin_pkey" PRIMARY KEY ("id");    
+SQL;
+
+        $query->query($sql);
+        exit;
         parent::init();
         $this->tpl_mainpage = 'system/plugin.tpl';
