Change name

This commit is contained in:
Abhishek Das
2013-04-02 01:24:50 +05:30
parent 9546f67af3
commit a5a9673eb3
7 changed files with 24 additions and 47 deletions
+49
View File
@@ -0,0 +1,49 @@
-- phpMyAdmin SQL Dump
-- version 3.4.11.1deb1
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Mar 30, 2013 at 07:12 PM
-- Server version: 5.5.29
-- PHP Version: 5.4.6-1ubuntu1.2
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!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 */;
--
-- Database: `gofish`
--
-- --------------------------------------------------------
--
-- Table structure for table `parents`
--
CREATE TABLE IF NOT EXISTS `parents` (
`task_id` int(10) NOT NULL,
`parent_id` int(10) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `tasks`
--
CREATE TABLE IF NOT EXISTS `tasks` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`content` varchar(1000) NOT NULL,
`timestamp` int(12) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=17 ;
/*!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 */;