-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstatusApp.sql
65 lines (53 loc) · 2.31 KB
/
statusApp.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
-- phpMyAdmin SQL Dump
-- version 3.5.1
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: May 29, 2013 at 08:02 PM
-- Server version: 5.5.25
-- PHP Version: 5.4.4
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
--
-- Database: `statusApp`
--
-- --------------------------------------------------------
--
-- Table structure for table `Users`
--
CREATE TABLE `Users` (
`emailId` varchar(100) NOT NULL,
`firstName` varchar(100) NOT NULL,
`lastName` varchar(100) NOT NULL,
`password` varchar(100) NOT NULL,
`year` varchar(11) NOT NULL,
PRIMARY KEY (`emailId`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `Users`
--
INSERT INTO `Users` (`emailId`, `firstName`, `lastName`, `password`, `year`) VALUES
('[email protected]', 'ddd', 'ddddd', 'd8578edf8458ce06fbc5bb76a58c5ca4', '3'),
('[email protected]', 'Rad', 'doubleRad', 'd8578edf8458ce06fbc5bb76a58c5ca4', '3'),
('[email protected]', 'assssss', 'asdasdad', '2e2d7fe5d75b602595df021c7841243b', '2'),
('[email protected]', 'Varun', 'Sekar', 'd8578edf8458ce06fbc5bb76a58c5ca4', '2'),
('[email protected]', 'xzbxnzb', 'bxnzbxnb', 'f3abb86bd34cf4d52698f14c0da1dc60', '3');
-- --------------------------------------------------------
--
-- Table structure for table `userStatus`
--
CREATE TABLE `userStatus` (
`emailId` varchar(100) NOT NULL,
`curStatus` varchar(100) NOT NULL,
`prevStatuses` mediumtext NOT NULL,
`timeStamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`task` varchar(100) NOT NULL,
`completed` int(11) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `userStatus`
--
INSERT INTO `userStatus` (`emailId`, `curStatus`, `prevStatuses`, `timeStamp`, `task`, `completed`) VALUES
('[email protected]', 'nope i was lying', 'life is good#2013-05-29 23:21:52;and i am doing great#2013-05-29 23:22:34;kind of depressed now#2013-05-29 23:27:02;feeling better#2013-05-29 23:28:14;a lot better#2013-05-29 23:29:23;', '2013-05-29 18:01:01', 'how is life', 0),
('[email protected]', ':) :)', 'No#2013-05-16 16:06:37;its#2013-05-16 16:06:37;Not!#2013-05-16 16:06:37;Period.#2013-05-16 16:06:37;:(#2013-05-16 16:06:37;', '2013-05-16 10:36:37', 'testing your diligence', 0),
('[email protected]', 'and verified', 'status uploaded#2013-05-29 23:22:18;', '2013-05-29 17:52:49', 'task assigned', 0);