-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Shemona Singh
authored and
Shemona Singh
committed
Nov 5, 2017
1 parent
172daca
commit d8e0a35
Showing
2 changed files
with
66 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
# ************************************************************ | ||
# Sequel Pro SQL dump | ||
# Version 4541 | ||
# | ||
# http://www.sequelpro.com/ | ||
# https://github.com/sequelpro/sequelpro | ||
# | ||
# Host: 127.0.0.1 (MySQL 5.7.20) | ||
# Database: lamp | ||
# Generation Time: 2017-11-05 19:36:41 +0000 | ||
# ************************************************************ | ||
|
||
|
||
/*!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 */; | ||
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; | ||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; | ||
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; | ||
|
||
|
||
# Dump of table Tweets | ||
# ------------------------------------------------------------ | ||
|
||
DROP TABLE IF EXISTS `Tweets`; | ||
|
||
CREATE TABLE `Tweets` ( | ||
`id` int(11) unsigned NOT NULL AUTO_INCREMENT, | ||
`tweet_id` bigint(11) DEFAULT NULL, | ||
`tweet` char(11) DEFAULT NULL, | ||
`date_time` datetime DEFAULT NULL, | ||
PRIMARY KEY (`id`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | ||
|
||
|
||
|
||
# Dump of table Users | ||
# ------------------------------------------------------------ | ||
|
||
DROP TABLE IF EXISTS `Users`; | ||
|
||
CREATE TABLE `Users` ( | ||
`id` int(11) unsigned NOT NULL AUTO_INCREMENT, | ||
`first_name` text, | ||
`last_name` text, | ||
`username` char(20) DEFAULT '', | ||
`password` text, | ||
`email` text, | ||
`picture` text, | ||
`bio` char(140) DEFAULT '', | ||
`url` text, | ||
`location` text, | ||
`date_time` datetime DEFAULT NULL, | ||
PRIMARY KEY (`id`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | ||
|
||
|
||
|
||
|
||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; | ||
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; | ||
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; | ||
/*!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 */; |