-- MySQL dump 10.13  Distrib 5.1.33, for Win32 (ia32)
--
-- Host: localhost    Database: _db_index
-- ------------------------------------------------------
-- Server version	5.1.33-community

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `m_alarm`
--

DROP TABLE IF EXISTS `m_alarm`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `m_alarm` (
  `id_account` int(10) unsigned NOT NULL,
  `id_num` int(10) unsigned NOT NULL,
  `c_valid` varchar(5) NOT NULL,
  `c_hour` int(10) NOT NULL,
  `c_min` int(10) NOT NULL,
  `c_day` int(10) NOT NULL,
  `c_week` int(10) NOT NULL DEFAULT '-1',
  `c_done` varchar(10) NOT NULL,
  `c_message` varchar(255) NOT NULL,
  `c_updatetime` datetime NOT NULL,
  PRIMARY KEY (`id_account`,`id_num`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `m_alarm`
--

LOCK TABLES `m_alarm` WRITE;
/*!40000 ALTER TABLE `m_alarm` DISABLE KEYS */;
/*!40000 ALTER TABLE `m_alarm` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `m_category`
--

DROP TABLE IF EXISTS `m_category`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `m_category` (
  `id_account` int(10) unsigned NOT NULL,
  `id_category` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `c_categoryName` varchar(50) NOT NULL,
  `c_categoryDisplayColumn` int(10) unsigned NOT NULL,
  `c_categoryDisplayOrder` int(10) unsigned NOT NULL,
  `c_categoryDisplayColor` varchar(50) NOT NULL,
  `c_registtime` datetime NOT NULL,
  `c_updatetime` datetime NOT NULL,
  `c_delete` int(10) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id_category`) USING BTREE
) ENGINE=MyISAM AUTO_INCREMENT=97 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `m_category`
--

LOCK TABLES `m_category` WRITE;
/*!40000 ALTER TABLE `m_category` DISABLE KEYS */;
INSERT INTO `m_category` VALUES (10003,65,'料理',1,0,'Tomato','2008-09-15 00:00:00','2008-09-15 00:00:00',0),(10003,66,'旅館・温泉',4,0,'Green','2008-09-15 00:00:00','2009-09-05 11:21:36',0),(10003,67,'花・さくら',4,0,'Deeppink','2008-09-15 00:00:00','2009-09-05 11:21:36',0),(10003,68,'レストラン・食事',3,0,'Slateblue','2008-09-15 00:00:00','2009-09-05 11:21:36',0),(10001,83,'調べる・話題',3,200,'DarkGoldenrod','2008-09-15 00:00:00','2014-03-26 19:06:16',0),(10001,82,'鉄道・乗換',2,100,'Dimgray','2008-09-15 00:00:00','2014-03-26 15:36:34',0),(10001,81,'地図',2,200,'Forestgreen','2008-09-15 00:00:00','2014-03-26 15:35:36',0),(10001,93,'MyHome Portal',1,800,'Cornflowerblue','2014-03-25 13:45:14','2014-03-26 15:35:36',0),(10001,73,'2ndシリーズ',1,800,'Cornflowerblue','2008-09-15 00:00:00','2014-03-27 15:53:11',0),(10001,79,'辞書・翻訳',3,300,'Mediumpurple','2008-09-15 00:00:00','2014-03-26 15:35:36',0),(10001,72,'英語・英会話',3,400,'Olivedrab','2008-09-15 00:00:00','2014-03-26 15:35:36',0),(10001,70,'ニュース',1,100,'Dodgerblue','2008-09-15 00:00:00','2014-03-26 15:38:44',0),(10001,69,'天気',1,200,'Darkturquoise','2008-09-15 00:00:00','2014-03-25 13:50:36',0),(10001,58,'レストラン・食事',4,600,'Hotpink','2008-09-15 00:00:00','2014-03-26 15:35:36',0),(10002,84,'カレンダー',1,0,'Dodgerblue','2008-09-15 00:00:00','2009-10-17 08:10:20',0),(10002,85,'時計',2,0,'Darkorange','2008-09-15 00:00:00','2009-10-17 08:10:20',0),(10002,87,'ニュース',1,0,'Royalblue','2008-09-15 00:00:00','2008-09-15 00:00:00',0),(10001,94,'貯蓄・為替',4,900,'Dimgray','2014-03-26 18:51:04','2014-03-26 18:56:05',0),(10001,96,'写真・画像・動画・テレビ',2,500,'Tomato','2014-03-27 17:59:51','2014-03-27 19:12:16',0);
/*!40000 ALTER TABLE `m_category` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `m_homepage`
--

DROP TABLE IF EXISTS `m_homepage`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `m_homepage` (
  `id_homepage` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `id_account` int(10) unsigned NOT NULL,
  `id_category` int(10) unsigned NOT NULL,
  `c_title` varchar(255) NOT NULL,
  `c_url` varchar(500) NOT NULL,
  `c_displayOrder` int(10) unsigned NOT NULL,
  `c_registtime` datetime NOT NULL,
  `c_updatetime` datetime NOT NULL,
  `c_delete` int(10) unsigned NOT NULL DEFAULT '0',
  `c_privacy` int(10) unsigned NOT NULL DEFAULT '0',
  `c_html` longtext NOT NULL,
  PRIMARY KEY (`id_homepage`) USING BTREE
) ENGINE=MyISAM AUTO_INCREMENT=392 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `m_homepage`
--

LOCK TABLES `m_homepage` WRITE;
/*!40000 ALTER TABLE `m_homepage` DISABLE KEYS */;
INSERT INTO `m_homepage` VALUES (241,10003,65,'クックパッド','http://cookpad.com/',0,'2008-09-15 00:00:00','2008-09-15 00:00:00',0,0,''),(242,10003,65,'ボブとアンジー','http://www.bob-an.com/',10,'2008-09-15 00:00:00','2014-04-10 06:37:09',0,0,'<script src=\"http://www.bob-an.com/tools/btool/bob_an.js\"></script>'),(243,10003,65,'レシピ大百科','http://www.ajinomoto.co.jp/recipe/',0,'2008-09-15 00:00:00','2008-09-15 00:00:00',0,0,''),(244,10003,68,'食べログ','http://r.tabelog.com/',0,'2008-09-15 00:00:00','2008-09-15 00:00:00',0,0,''),(246,10003,68,'グルメぴあ','http://g.pia.co.jp/',0,'2008-09-15 00:00:00','2008-09-15 00:00:00',0,0,''),(247,10003,68,'ぐるなび','http://www.gnavi.co.jp/',0,'2008-09-15 00:00:00','2008-09-15 00:00:00',0,0,''),(248,10003,66,'湯oogle','http://www.yoogle.jp/',0,'2008-09-15 00:00:00','2008-09-15 00:00:00',0,0,''),(249,10003,66,'宿ネット','http://www.yadonet.ne.jp/index.shtml',0,'2008-09-15 00:00:00','2008-09-15 00:00:00',0,0,''),(250,10003,66,'ゆこゆこネット','http://www.yukoyuko.net/',0,'2008-09-15 00:00:00','2008-09-15 00:00:00',0,0,''),(253,10003,67,'じゃらん花見情報','http://www.jalan.net/jalan/doc/theme/sakura/sakura_index.html',0,'2008-09-15 00:00:00','2008-09-15 00:00:00',0,0,''),(391,10001,73,'2nd INDEX','http://ok2nd.me/index/',10,'2014-04-09 15:11:58','2014-04-09 15:11:58',0,0,''),(390,10001,83,'サーチナ Searchina','http://searchina.ne.jp/',500,'2014-03-27 16:13:24','2014-03-27 16:21:45',0,0,''),(389,10001,96,'CMジャパン','http://www.cmjapan.com/',90,'2014-03-27 19:13:08','2014-03-27 19:13:08',0,0,''),(388,10001,96,'インターネットTVガイド','http://www.tvguide.or.jp/',80,'2014-03-27 19:05:35','2014-03-27 19:13:08',0,0,''),(387,10001,96,'ニコニコ動画','http://www.nicovideo.jp/',50,'2014-03-27 18:05:10','2014-03-27 18:05:56',0,0,''),(386,10001,96,'pixiv','http://www.pixiv.net/',20,'2014-03-27 18:02:34','2014-03-27 18:05:56',0,0,''),(385,10001,94,'銀行.info(金利)','http://www.ginkou.info/modules/tinycontent/index.php?id=8',0,'2014-03-26 18:55:14','2014-03-26 19:01:37',0,0,''),(384,10001,94,'為替','',10,'2014-03-26 18:52:30','2014-04-10 06:37:46',0,0,'<script src=\"http://www.fxprime.co.jp/bparts/partsjs.php?w=160&c=&type=rate&charset=UTF-8\"></script>'),(383,10001,73,'2nd 誕生花,花言葉','http://ok2nd.me/flower/pc/',40,'2014-03-26 15:26:03','2014-04-09 15:11:58',0,0,''),(382,10001,70,'CNNニュース','http://www.cnn.co.jp/',100,'2014-03-26 15:22:30','2014-03-27 15:51:08',0,0,''),(381,10001,70,'日本経済新聞','http://www.nikkei.com/',200,'2014-03-26 15:21:35','2014-03-26 15:23:46',0,0,''),(380,10001,70,'ライフハッカー','http://www.lifehacker.jp/',800,'2014-03-26 15:21:10','2014-03-26 15:24:16',0,0,''),(379,10001,70,'TechCrunch Japan','http://jp.techcrunch.com/',800,'2014-03-26 15:21:00','2014-03-26 15:23:46',0,0,''),(378,10001,70,'アメーバニュース','http://news.ameba.jp/',300,'2014-03-26 15:20:29','2014-03-26 15:24:16',0,0,''),(377,10001,73,'2nd 計算器','http://ok2nd.me/tool/calc/',70,'2014-03-25 13:17:15','2014-04-09 15:11:58',0,0,''),(375,10001,73,'2nd 英語','http://ok2nd.me/eigo/',50,'2014-03-25 13:17:15','2014-04-09 15:11:58',0,0,''),(376,10001,73,'2nd 週間天気予報','http://ok2nd.me/tenki/',60,'2014-03-25 13:17:15','2014-04-09 15:11:58',0,0,''),(374,10001,73,'2nd マップ (スマホ用)','http://ok2nd.me/abook/map/',30,'2014-03-25 13:17:15','2014-04-09 15:11:58',0,0,''),(373,10001,73,'2nd 世界遺産,日本百選 etc.','http://ok2nd.me/abook/pc/',20,'2014-03-25 13:17:15','2014-04-09 15:11:58',0,0,''),(372,10001,93,'中級プログラマの自宅でPHP','http://ok2nd.blog87.fc2.com/',10,'2008-09-15 00:00:00','2014-03-25 13:49:43',0,0,''),(371,10001,93,'MyHome Portal','http://ok2nd.web.fc2.com/',10,'2008-09-15 00:00:00','2014-03-25 13:49:26',0,0,''),(370,10001,83,'教えて!Goo','http://oshiete.goo.ne.jp/',60,'2008-09-15 00:00:00','2014-03-27 16:13:58',0,0,''),(368,10001,83,'はてな','http://www.hatena.ne.jp/',10,'2008-09-15 00:00:00','2014-03-27 16:13:58',0,0,''),(369,10001,83,'人力検索はてな','http://q.hatena.ne.jp/',60,'2008-09-15 00:00:00','2014-03-27 16:13:58',0,0,''),(367,10001,83,'Wikipedia','http://ja.wikipedia.org/',0,'2008-09-15 00:00:00','2008-09-15 00:00:00',0,0,''),(366,10001,82,'JR えきねっと','https://www.eki-net.com/',0,'2008-09-15 00:00:00','2014-03-26 15:29:37',0,0,''),(365,10001,82,'駅探','http://ekitan.com/',0,'2008-09-15 00:00:00','2014-03-26 15:28:46',0,0,'<form name=\"norikae_form\" target=\"_self\" style=\"border:1px solid #808080;background-color:#F0E68C;margin:5px;padding:3px;\">\n乗車:<input type=\"text\" name=\"SF\" size=\"12\"><br>\n下車:<input type=\"text\" name=\"ST\" size=\"12\"><br>\n<input type=\"button\" value=\"乗換(駅探)\" onClick=\"Norikae_Ekitan()\"><br>\n<input type=\"button\" value=\"乗換(Google)\" onClick=\"Norikae_Google()\"><br>\n</form>\n<script language=\"JavaScript\">\nfunction Norikae_Google() {\nurl = \"http://maps.google.co.jp/maps?ie=UTF8&f=d&ttype=dep&dirflg=r\";\nurl = url + \"&saddr=\" + encodeURL(document.norikae_form.SF.value);\nurl = url + \"&daddr=\" + encodeURL(document.norikae_form.ST.value);\n//top.location.href = url;\nwindow.open(url);\n}\nfunction Norikae_Ekitan() {\nurl = \"http://transit.ekitan.com/norikae/NorikaeSearch\";\nurl = url + \"?SFNAME=\" + EscapeSJIS(document.norikae_form.SF.value);\nurl = url + \"&STNAME=\" + EscapeSJIS(document.norikae_form.ST.value);\n//top.location.href = url;\nwindow.open(url);\n}\n</script>'),(364,10001,82,'えきから時刻表','http://ekikara.jp/',0,'2008-09-15 00:00:00','2008-09-15 00:00:00',0,0,''),(363,10001,81,'マピオン','http://www.mapion.co.jp/',0,'2008-09-15 00:00:00','2008-09-15 00:00:00',0,0,''),(362,10001,81,'Yahoo!地図','http://map.yahoo.co.jp/',0,'2008-09-15 00:00:00','2014-03-26 15:31:05',0,0,''),(361,10001,81,'Googleマップ','http://maps.google.co.jp/',0,'2008-09-15 00:00:00','2008-09-15 00:00:00',0,0,''),(360,10001,79,'翻訳 Resources','http://www.kotoba.ne.jp/',0,'2008-09-15 00:00:00','2008-09-15 00:00:00',0,0,''),(359,10001,79,'Weblio総合辞書','http://www.weblio.jp/',0,'2008-09-15 00:00:00','2008-09-15 00:00:00',0,0,''),(358,10001,79,'Google翻訳','http://translate.google.com/',0,'2008-09-15 00:00:00','2014-03-27 15:55:14',0,0,''),(347,10001,83,'イザ!','http://www.iza.ne.jp/',400,'2008-09-15 00:00:00','2014-03-27 16:21:45',0,0,''),(348,10001,83,'gooランキング','http://ranking.goo.ne.jp/',20,'2008-09-15 00:00:00','2014-03-27 16:13:58',0,0,''),(349,10001,83,'雑誌ち読みマガボン','http://www.magabon.jp/',800,'2008-09-15 00:00:00','2014-03-27 16:21:45',0,0,''),(350,10001,72,'英語伝','http://www.eigoden.co.jp/',100,'2008-09-15 00:00:00','2014-03-26 19:03:50',0,0,''),(351,10001,72,'BBC News','http://news.bbc.co.uk/',20,'2008-09-15 00:00:00','2014-03-26 19:03:50',0,0,''),(352,10001,72,'CNN News','http://edition.cnn.com/',10,'2008-09-15 00:00:00','2014-03-27 15:41:20',0,0,''),(353,10001,72,'スペースアルク','http://www.alc.co.jp/',300,'2008-09-15 00:00:00','2014-03-27 16:15:30',0,0,''),(354,10001,72,'英語タウン','http://www.eigotown.com/',200,'2008-09-15 00:00:00','2014-03-27 16:15:30',0,0,''),(355,10001,72,'VOA Learn English','http://www.voanews.com/specialenglish/index.cfm',30,'2008-09-15 00:00:00','2014-03-27 15:42:20',0,0,''),(356,10001,72,'NHK ゴガクル','http://gogakuru.com/',50,'2014-03-27 16:17:01','2014-03-27 16:17:01',0,0,''),(357,10001,79,'Excite翻訳','http://www.excite.co.jp/world/english/',0,'2008-09-15 00:00:00','2014-03-27 15:54:27',0,0,''),(346,10001,96,'flickr','http://www.flickr.com/explore/',10,'2014-03-27 18:00:25','2014-03-27 18:05:56',0,0,''),(345,10001,70,'Googleニュース','http://news.google.com/nwshp',0,'2008-09-15 00:00:00','2014-03-27 15:51:08',0,0,''),(344,10001,69,'Yahoo天気','http://weather.yahoo.co.jp/weather/',0,'2008-09-15 00:00:00','2008-09-15 00:00:00',0,0,''),(343,10001,69,'WeatherNews','http://weathernews.jp/',200,'2008-09-15 00:00:00','2014-03-27 15:52:03',0,0,''),(342,10001,69,'tenki.jp','http://www.tenki.jp/',0,'2008-09-15 00:00:00','2014-03-27 15:51:39',0,0,''),(341,10001,58,'ぐるなび','http://www.gnavi.co.jp/',0,'2008-09-15 00:00:00','2008-09-15 00:00:00',0,0,''),(339,10001,58,'食べログ','http://r.tabelog.com/',0,'2008-09-15 00:00:00','2008-09-15 00:00:00',0,0,''),(340,10001,58,'グルメぴあ','http://g.pia.co.jp/',0,'2008-09-15 00:00:00','2008-09-15 00:00:00',0,0,''),(332,10002,84,'日めくりカレンダー','',0,'2008-09-15 00:00:00','2008-09-15 00:00:00',0,0,'<script type=\"text/javascript\" language=\"javascript\" src=\"http://keisan.casio.jp/keisan/blogparts/calendar/calendar.php?pref=3\"></script>'),(333,10002,87,'FX為替チャート','',0,'2008-09-15 00:00:00','2012-08-21 18:30:03',0,0,'<script type=\"text/javascript\" src=\"http://www.fxprime.co.jp/bparts/partsjs.php?w=160&c=&type=full&charset=UTF-8\"></script>'),(334,10002,85,'美人時計','http://www.bijint.com/',0,'2008-09-15 00:00:00','2009-10-02 18:16:01',0,0,'<script src=\"http://www.gmodules.com/ig/ifr?url=http://bijint.com/bijint.xml&synd=open&w=240&h=330&title=%E7%BE%8E%E4%BA%BA%E6%99%82%E8%A8%88%EF%BC%88bijin-tokei%EF%BC%89&border=%23ffffff%7C3px%2C1px+solid+%23999999&output=js\"></script>'),(337,10002,85,'ユニクロック','http://www.uniqlo.jp/uniqlock/',0,'2009-10-17 08:09:49','2009-10-17 08:09:49',0,0,'<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" width=\"424\" height=\"278\" codebase=\"http://fpdownload.adobe.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0\"><param name=\"allowScriptAccess\" value=\"always\" /><param name=\"movie\" value=\"http://www.uniqlo.jp/uniqlock/swf/blog_large.swf?user_id=D6f69lagN1KzGRBu\" /><param name=\"base\" value=\".\" /><param name=\"quality\" value=\"high\" /><param name=\"wmode\" value=\"transparent\" /><embed src=\"http://www.uniqlo.jp/uniqlock/swf/blog_large.swf?user_id=D6f69lagN1KzGRBu\" width=\"424\" height=\"278\" allowScriptAccess=\"always\" base = \".\" quality=\"high\" wmode=\"transparent\" pluginspage=\"http://www.adobe.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash\" /></object>'),(338,10002,85,'美女暦','http://www.bijogoyomi.com/bijo/',0,'2010-04-07 19:13:24','2010-04-07 19:13:24',0,0,'<script src=\'http://www.bijogoyomi.com/bijo/js/blogparts.js\' type=\'text/javascript\'></script><script type=\'text/javascript\'>writeBIJO(\'KlsHOiiB-CkodsufU\');</script><noscript><a href=\"http://www.bijogoyomi.com/\" target=\"_blank\">美女暦（BIJO ごよみ）</a></noscript>');
/*!40000 ALTER TABLE `m_homepage` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `m_memo`
--

DROP TABLE IF EXISTS `m_memo`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `m_memo` (
  `id_account` int(10) unsigned NOT NULL,
  `c_memo` longtext NOT NULL,
  `c_updatetime` datetime NOT NULL,
  PRIMARY KEY (`id_account`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `m_memo`
--

LOCK TABLES `m_memo` WRITE;
/*!40000 ALTER TABLE `m_memo` DISABLE KEYS */;
/*!40000 ALTER TABLE `m_memo` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `m_mynews`
--

DROP TABLE IF EXISTS `m_mynews`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `m_mynews` (
  `id_mynews` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `id_account` int(10) unsigned NOT NULL,
  `c_keyword` varchar(500) NOT NULL,
  `id_andor` int(10) unsigned NOT NULL,
  `c_displayOrder` int(10) unsigned NOT NULL,
  `c_button_color` varchar(50) NOT NULL,
  `c_registtime` datetime NOT NULL,
  `c_updatetime` datetime NOT NULL,
  `c_delete` int(10) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id_mynews`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `m_mynews`
--

LOCK TABLES `m_mynews` WRITE;
/*!40000 ALTER TABLE `m_mynews` DISABLE KEYS */;
INSERT INTO `m_mynews` VALUES (1,10001,'\"myhome portal\" OR myhomeportal',10,200,'#CEEDED','2012-05-10 18:51:37','2012-05-10 18:52:40',0),(2,10001,'php javascript mysql',50,100,'#CEEDED','2012-05-10 18:51:37','2012-05-10 18:52:40',0);
/*!40000 ALTER TABLE `m_mynews` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `m_oftenuse`
--

DROP TABLE IF EXISTS `m_oftenuse`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `m_oftenuse` (
  `id_oftenuse` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `id_account` int(10) unsigned NOT NULL,
  `c_title1` varchar(100) NOT NULL,
  `c_title2` varchar(100) NOT NULL,
  `c_url` varchar(500) NOT NULL,
  `c_bgcolor` varchar(30) NOT NULL,
  `c_displayOrder` int(10) unsigned NOT NULL,
  `c_registtime` datetime NOT NULL,
  `c_updatetime` datetime NOT NULL,
  `c_delete` int(10) unsigned NOT NULL DEFAULT '0',
  `c_privacy` int(10) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id_oftenuse`) USING BTREE
) ENGINE=MyISAM AUTO_INCREMENT=21 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `m_oftenuse`
--

LOCK TABLES `m_oftenuse` WRITE;
/*!40000 ALTER TABLE `m_oftenuse` DISABLE KEYS */;
INSERT INTO `m_oftenuse` VALUES (20,10013,'pixiv','ピクシブ','http://www.pixiv.net/','Red',110,'2014-03-27 19:29:32','2014-03-27 19:29:32',0,0),(19,10013,'flickr','Explore','http://www.flickr.com/explore/','Slateblue',120,'2014-03-27 19:28:50','2014-03-27 19:28:50',0,0),(18,10001,'Hatena','はてな','http://www.hatena.ne.jp/','Dodgerblue',140,'2014-03-26 15:18:18','2014-03-26 15:39:33',0,0),(17,10001,'NAVER','まとめ','http://matome.naver.jp/','Mediumseagreen',130,'2014-03-26 15:15:12','2014-03-26 15:15:12',0,0),(16,10001,'Gmail','メール','https://mail.google.com/?hl=ja','Cornflowerblue',120,'2014-03-26 15:11:39','2014-03-26 15:39:16',0,0),(15,10001,'Google','ニュース','http://news.google.com/','Cornflowerblue',110,'2010-04-08 19:52:45','2014-03-26 15:39:08',0,0),(14,10001,'Twitter','ツイッター','http://twitter.com/','Deepskyblue',160,'2010-04-08 19:51:03','2010-04-08 20:06:21',0,0),(13,10001,'YouTube','動画','http://www.youtube.com/','Tomato',150,'2010-04-08 19:47:25','2014-03-26 07:54:03',0,0);
/*!40000 ALTER TABLE `m_oftenuse` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `m_pane2`
--

DROP TABLE IF EXISTS `m_pane2`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `m_pane2` (
  `id_account` int(10) unsigned NOT NULL,
  `c_text1` longtext NOT NULL,
  `c_text2` longtext NOT NULL,
  `c_updatetime` datetime NOT NULL,
  PRIMARY KEY (`id_account`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `m_pane2`
--

LOCK TABLES `m_pane2` WRITE;
/*!40000 ALTER TABLE `m_pane2` DISABLE KEYS */;
/*!40000 ALTER TABLE `m_pane2` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `r_andor`
--

DROP TABLE IF EXISTS `r_andor`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `r_andor` (
  `id_andor` int(10) unsigned NOT NULL,
  `c_andor` varchar(45) NOT NULL,
  PRIMARY KEY (`id_andor`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `r_andor`
--

LOCK TABLES `r_andor` WRITE;
/*!40000 ALTER TABLE `r_andor` DISABLE KEYS */;
INSERT INTO `r_andor` VALUES (10,'AND検索'),(50,'OR検索');
/*!40000 ALTER TABLE `r_andor` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Temporary table structure for view `v_homepage`
--

DROP TABLE IF EXISTS `v_homepage`;
/*!50001 DROP VIEW IF EXISTS `v_homepage`*/;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
/*!50001 CREATE TABLE `v_homepage` (
  `id_homepage` int(10) unsigned,
  `id_account` int(10) unsigned,
  `id_category` int(10) unsigned,
  `c_categoryName` varchar(50),
  `c_categoryDisplayColumn` int(10) unsigned,
  `c_categoryDisplayOrder` int(10) unsigned,
  `c_categoryDisplayColor` varchar(50),
  `c_title` varchar(255),
  `c_url` varchar(500),
  `c_displayOrder` int(10) unsigned,
  `c_delete` int(10) unsigned,
  `c_privacy` int(10) unsigned,
  `c_html` longtext
) ENGINE=MyISAM */;
SET character_set_client = @saved_cs_client;

--
-- Temporary table structure for view `v_mynews`
--

DROP TABLE IF EXISTS `v_mynews`;
/*!50001 DROP VIEW IF EXISTS `v_mynews`*/;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
/*!50001 CREATE TABLE `v_mynews` (
  `id_mynews` int(10) unsigned,
  `id_account` int(10) unsigned,
  `c_keyword` varchar(500),
  `id_andor` int(10) unsigned,
  `c_displayOrder` int(10) unsigned,
  `c_button_color` varchar(50),
  `c_registtime` datetime,
  `c_updatetime` datetime,
  `c_delete` int(10) unsigned,
  `c_andor` varchar(45)
) ENGINE=MyISAM */;
SET character_set_client = @saved_cs_client;

--
-- Final view structure for view `v_homepage`
--

/*!50001 DROP TABLE `v_homepage`*/;
/*!50001 DROP VIEW IF EXISTS `v_homepage`*/;
/*!50001 SET @saved_cs_client          = @@character_set_client */;
/*!50001 SET @saved_cs_results         = @@character_set_results */;
/*!50001 SET @saved_col_connection     = @@collation_connection */;
/*!50001 SET character_set_client      = latin1 */;
/*!50001 SET character_set_results     = latin1 */;
/*!50001 SET collation_connection      = latin1_swedish_ci */;
/*!50001 CREATE ALGORITHM=UNDEFINED */
/*!50013 DEFINER=`root`@`localhost` SQL SECURITY DEFINER */
/*!50001 VIEW `v_homepage` AS select `m_homepage`.`id_homepage` AS `id_homepage`,`m_homepage`.`id_account` AS `id_account`,`m_homepage`.`id_category` AS `id_category`,`m_category`.`c_categoryName` AS `c_categoryName`,`m_category`.`c_categoryDisplayColumn` AS `c_categoryDisplayColumn`,`m_category`.`c_categoryDisplayOrder` AS `c_categoryDisplayOrder`,`m_category`.`c_categoryDisplayColor` AS `c_categoryDisplayColor`,`m_homepage`.`c_title` AS `c_title`,`m_homepage`.`c_url` AS `c_url`,`m_homepage`.`c_displayOrder` AS `c_displayOrder`,`m_homepage`.`c_delete` AS `c_delete`,`m_homepage`.`c_privacy` AS `c_privacy`,`m_homepage`.`c_html` AS `c_html` from (`m_homepage` left join `m_category` on((`m_homepage`.`id_category` = `m_category`.`id_category`))) where (`m_homepage`.`c_delete` = 0) */;
/*!50001 SET character_set_client      = @saved_cs_client */;
/*!50001 SET character_set_results     = @saved_cs_results */;
/*!50001 SET collation_connection      = @saved_col_connection */;

--
-- Final view structure for view `v_mynews`
--

/*!50001 DROP TABLE `v_mynews`*/;
/*!50001 DROP VIEW IF EXISTS `v_mynews`*/;
/*!50001 SET @saved_cs_client          = @@character_set_client */;
/*!50001 SET @saved_cs_results         = @@character_set_results */;
/*!50001 SET @saved_col_connection     = @@collation_connection */;
/*!50001 SET character_set_client      = latin1 */;
/*!50001 SET character_set_results     = latin1 */;
/*!50001 SET collation_connection      = latin1_swedish_ci */;
/*!50001 CREATE ALGORITHM=UNDEFINED */
/*!50013 DEFINER=`root`@`localhost` SQL SECURITY DEFINER */
/*!50001 VIEW `v_mynews` AS select `m_mynews`.`id_mynews` AS `id_mynews`,`m_mynews`.`id_account` AS `id_account`,`m_mynews`.`c_keyword` AS `c_keyword`,`m_mynews`.`id_andor` AS `id_andor`,`m_mynews`.`c_displayOrder` AS `c_displayOrder`,`m_mynews`.`c_button_color` AS `c_button_color`,`m_mynews`.`c_registtime` AS `c_registtime`,`m_mynews`.`c_updatetime` AS `c_updatetime`,`m_mynews`.`c_delete` AS `c_delete`,`r_andor`.`c_andor` AS `c_andor` from (`m_mynews` left join `r_andor` on((`m_mynews`.`id_andor` = `r_andor`.`id_andor`))) where (`m_mynews`.`c_delete` = 0) */;
/*!50001 SET character_set_client      = @saved_cs_client */;
/*!50001 SET character_set_results     = @saved_cs_results */;
/*!50001 SET collation_connection      = @saved_col_connection */;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

-- Dump completed on 2014-04-09 21:50:30
