-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathuser_account_master.sql
More file actions
51 lines (41 loc) · 1.57 KB
/
Copy pathuser_account_master.sql
File metadata and controls
51 lines (41 loc) · 1.57 KB
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
-- phpMyAdmin SQL Dump
-- version 4.0.10deb1
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Feb 02, 2015 at 04:39 PM
-- Server version: 5.5.41-0ubuntu0.14.04.1
-- PHP Version: 5.5.9-1ubuntu4.5
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: `test`
--
-- --------------------------------------------------------
--
-- Table structure for table `user_account_master`
--
CREATE TABLE IF NOT EXISTS `user_account_master` (
`uid` int(11) NOT NULL AUTO_INCREMENT,
`uname` varchar(100) NOT NULL,
`email` varchar(100) NOT NULL,
`password` varchar(100) NOT NULL,
`create_date` date NOT NULL,
`state` int(11) NOT NULL,
`act_key` longtext NOT NULL,
PRIMARY KEY (`uid`),
UNIQUE KEY `uname` (`uname`,`email`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=17 ;
--
-- Dumping data for table `user_account_master`
--
INSERT INTO `user_account_master` (`uid`, `uname`, `email`, `password`, `create_date`, `state`, `act_key`) VALUES
(15, 'test91', 'anirban', 'abcd', '2015-02-02', 1, 'e4da3b7fbbce2345d7772b0674a318d5'),
(16, 'test92', 'anirban', 'abcd', '2015-02-02', 0, '1ff1de774005f8da13f42943881c655f');
/*!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 */;