-
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
Showing
8 changed files
with
99 additions
and
3 deletions.
There are no files selected for viewing
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,83 @@ | ||
# ************************************************************ | ||
# 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-12-03 19:18:51 +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` char(140) DEFAULT NULL, | ||
`date_time` datetime DEFAULT NULL, | ||
`user_id` int(11) DEFAULT NULL, | ||
PRIMARY KEY (`id`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | ||
|
||
LOCK TABLES `Tweets` WRITE; | ||
/*!40000 ALTER TABLE `Tweets` DISABLE KEYS */; | ||
|
||
INSERT INTO `Tweets` (`id`, `tweet`, `date_time`, `user_id`) | ||
VALUES | ||
(1,'testing tweet! one two three','1000-01-01 00:00:00',1), | ||
(2,'testing tweet again! four five six','1000-01-01 00:00:00',2); | ||
|
||
/*!40000 ALTER TABLE `Tweets` ENABLE KEYS */; | ||
UNLOCK TABLES; | ||
|
||
|
||
# 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, | ||
`url` text, | ||
`location` text, | ||
PRIMARY KEY (`id`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | ||
|
||
LOCK TABLES `Users` WRITE; | ||
/*!40000 ALTER TABLE `Users` DISABLE KEYS */; | ||
|
||
INSERT INTO `Users` (`id`, `first_name`, `last_name`, `username`, `password`, `email`, `url`, `location`) | ||
VALUES | ||
(1,'shemona','singh','mona','pass','shemona.singh@uconn.edu',NULL,'milford'), | ||
(2,'chris','stumper','chris','pass2','chris.stumper@uconn.edu',NULL,'simsbury'); | ||
|
||
/*!40000 ALTER TABLE `Users` ENABLE KEYS */; | ||
UNLOCK TABLES; | ||
|
||
|
||
|
||
/*!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 */; |
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
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
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
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
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 |
---|---|---|
|
@@ -6,3 +6,4 @@ | |
<body> | ||
|
||
<h1><?php echo $title; ?></h1> | ||
<h2>Hello</h2> |
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
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 @@ | ||
__ci_last_regenerate|i:1512329390; |