-- MySQL dump 10.11
--
-- Host: localhost    Database: _db_sticky
-- ------------------------------------------------------
-- Server version	5.0.51a

/*!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_category`
--

DROP TABLE IF EXISTS `m_category`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `m_category` (
  `id_category` int(10) unsigned NOT NULL auto_increment,
  `id_account` int(10) unsigned NOT NULL,
  `c_categoryName` varchar(50) NOT NULL,
  `c_categoryDisplayOrder` int(10) unsigned NOT NULL,
  `c_bg_color` varchar(50) NOT NULL,
  `c_sticky_width` int(10) unsigned NOT NULL,
  `c_font_size` int(10) unsigned NOT NULL,
  `c_font_weight` varchar(50) NOT NULL,
  `c_url_length` int(10) unsigned NOT NULL,
  `c_registtime` datetime NOT NULL,
  `c_updatetime` datetime NOT NULL,
  `c_delete` int(10) unsigned NOT NULL default '0',
  PRIMARY KEY  USING BTREE (`id_category`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
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 (1,10001,'雑メモ',1,'#FFF0E0',150,14,'bold',20,'2010-03-07 07:12:04','2010-03-07 07:31:46',0),(2,10001,'黒板',2,'#006400',150,18,'bold',20,'2010-03-07 07:12:04','2010-03-07 07:22:41',0),(3,10001,'アイデア',3,'#D4F9D4',200,12,'normal',30,'2010-03-07 07:12:04','2010-03-07 07:29:00',0),(4,10003,'料理メモ',0,'#FFF0E0',80,14,'bold',16,'2010-03-07 07:13:53','2010-03-07 07:20:45',0),(5,10003,'青空',0,'#87CEEB',150,12,'normal',20,'2010-03-07 07:13:53','2010-03-07 07:19:07',0);
/*!40000 ALTER TABLE `m_category` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `m_notes`
--

DROP TABLE IF EXISTS `m_notes`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `m_notes` (
  `id` int(10) unsigned NOT NULL auto_increment,
  `id_account` int(10) unsigned NOT NULL,
  `id_category` int(10) unsigned NOT NULL,
  `c_text` varchar(1024) NOT NULL,
  `c_color` varchar(16) NOT NULL default 'yellow',
  `c_xyz` varchar(20) character set utf8 collate utf8_unicode_ci NOT NULL,
  `c_updatetime` timestamp NOT NULL default CURRENT_TIMESTAMP,
  PRIMARY KEY  USING BTREE (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=19 DEFAULT CHARSET=utf8;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `m_notes`
--

LOCK TABLES `m_notes` WRITE;
/*!40000 ALTER TABLE `m_notes` DISABLE KEYS */;
INSERT INTO `m_notes` VALUES (1,10003,4,'大根','yellow','267x81x22','2010-03-06 22:15:03'),(2,10003,4,'にんじん','yellow','207x10x31','2010-03-06 22:15:15'),(3,10003,4,'豚肉','blue','17x91x30','2010-03-06 22:15:27'),(4,10003,4,'ねぎ','yellow','257x172x23','2010-03-06 22:15:36'),(5,10003,4,'生姜','pink','508x25x26','2010-03-06 22:15:42'),(7,10003,5,'雲','yellow','77x22x16','2010-03-06 22:19:26'),(6,10003,4,'胡椒','pink','477x120x27','2010-03-06 22:16:06'),(8,10003,5,'緑','green','73x235x18','2010-03-06 22:19:42'),(9,10003,5,'花','pink','29x146x17','2010-03-06 22:19:51'),(10,10001,1,'付箋をここに貼ってください。','yellow','41x30x35','2010-03-06 22:23:31'),(11,10001,2,'黒板っぽい色にもできます。','yellow','68x57x2','2010-03-06 22:24:26'),(13,10001,3,'アイデアが出たら、貼り付けてみましょう。','yellow','240x50x7','2010-03-06 22:26:20'),(12,10001,2,'チョークは使えません。','pink','397x148x5','2010-03-06 22:25:00'),(14,10001,3,'URL貼り付けサンプル\nhttp://localhost/_myhome/index/top.php','blue','422x154x6','2010-03-06 22:28:05'),(15,10001,1,'URLは表示を短くしたリンクで表示します\nhttp://ok2nd.web.fc2.com/','blue','334x132x38','2010-03-06 22:29:28'),(16,10001,1,'付箋の色は５色です。','pink','36x263x30','2010-03-06 22:32:20'),(17,10001,1,'思いついた事をどんどん貼り付けてアイデア帳的な使い方もできるかもしれません。','green','105x141x36','2010-03-06 22:33:18'),(18,10001,1,'背景色も設定できます。','orange','291x28x33','2010-03-06 22:35:32');
/*!40000 ALTER TABLE `m_notes` ENABLE KEYS */;
UNLOCK TABLES;
/*!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 2010-03-06 23:00:32
