Index: /temp/trunk/html/admin/system/bkup.php
===================================================================
--- /temp/trunk/html/admin/system/bkup.php	(revision 5703)
+++ /temp/trunk/html/admin/system/bkup.php	(revision 5706)
@@ -406,4 +406,29 @@
 }
 
+// ¥Ð¥Ã¥¯¥¢¥Ã¥×¥Æ¡¼¥Ö¥ë¤òºîÀ®¤¹¤ë
+function lfCreateTable(){
+	$objQuery = new SC_Query();
+	
+	// ¥Æ¡¼¥Ö¥ë¤ÎÂ¸ºß¥Á¥§¥Ã¥¯
+	$arrTableList = lfGetTableList();
+	
+	if(array_key_exists("dtb_bkup", $arrTableList)){
+		// Â¸ºß¤·¤Æ¤¤¤Ê¤±¤ì¤ÐºîÀ®
+		$cre_sql = "
+			create table dtb_bkup
+			(
+				bkup_name	text,
+				bkup_memo	text,
+				create_date	timestamp
+			);
+		";
+		
+		$objQuery->query($cre_sql);
+	}
+	
+	
+	
+}
+
 
 ?>
