Skip to content

Commit

Permalink
front-end and db added
Browse files Browse the repository at this point in the history
  • Loading branch information
yusufcakal committed Jan 25, 2018
1 parent 0acd34d commit 0d062c8
Show file tree
Hide file tree
Showing 10 changed files with 20,678 additions and 0 deletions.
23 changes: 23 additions & 0 deletions database/user_management.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Host: 127.0.0.1 (Version 5.7.15-log)
# Date: 2018-01-25 15:17:07
# Generator: MySQL-Front 6.0 (Build 2.20)


#
# Structure for table "user"
#

DROP TABLE IF EXISTS `user`;
CREATE TABLE `user` (
`Id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) DEFAULT NULL,
`book` varchar(255) DEFAULT NULL,
`age` int(11) DEFAULT '0',
PRIMARY KEY (`Id`)
) ENGINE=InnoDB AUTO_INCREMENT=45 DEFAULT CHARSET=utf8;

#
# Data for table "user"
#

INSERT INTO `user` VALUES (43,'ba12','b',2),(44,'barasdasdasdas','barasdasd',2112);
Loading

0 comments on commit 0d062c8

Please sign in to comment.