-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathwbeducar_java.sql
More file actions
27 lines (22 loc) · 834 Bytes
/
wbeducar_java.sql
File metadata and controls
27 lines (22 loc) · 834 Bytes
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
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+05:30";
--
-- Database: `wbeducar_java`
CREATE DATABASE `wbeducar_java`;
--
-- Table structure for table `user`
--
CREATE TABLE IF NOT EXISTS `user` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`username` varchar(25) COLLATE utf8_unicode_ci DEFAULT NULL,
`password` varchar(30) COLLATE utf8_unicode_ci DEFAULT NULL,
`user_status` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL,
`entry` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=12 ;
--
-- Dumping data for table `user`
--
INSERT INTO `user` (`id`, `username`, `password`, `user_status`, `entry`) VALUES
(1, 'admin', 'admin', 'Active', '2018-02-14 22:22:29')