-
Notifications
You must be signed in to change notification settings - Fork 3
/
userinfo.sql
46 lines (36 loc) · 1.59 KB
/
userinfo.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
-- phpMyAdmin SQL Dump
-- version 4.0.6deb1
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Apr 28, 2014 at 11:19 PM
-- Server version: 5.5.35-0ubuntu0.13.10.2
-- PHP Version: 5.5.3-1ubuntu2.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: `githelper`
--
-- --------------------------------------------------------
--
-- Table structure for table `userinfo`
--
CREATE TABLE IF NOT EXISTS `userinfo` (
`username` varchar(30) NOT NULL,
`token` varchar(50) NOT NULL,
`starrepo` text NOT NULL,
PRIMARY KEY (`username`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `userinfo`
--
INSERT INTO `userinfo` (`username`, `token`, `starrepo`) VALUES
('Midhun7416', '', ',https://github.com/datamgmt/facebook-data-mining.git'),
('sthita', '', 'https://github.com/ideoforms/python-twitter-examples.git,https://github.com/datamgmt/facebook-data-mining.git,https://github.com/johnmyleswhite/ML_for_Hackers.git,https://github.com/lisa-lab/pylearn2.git,https://github.com/clips/pattern.git,https://github.com/numenta/nupic.git,https://github.com/PredictionIO/PredictionIO.git,https://github.com/scikit-learn/scikit-learn.git');
/*!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 */;