Skip to content

Commit

Permalink
Added files via upload
Browse files Browse the repository at this point in the history
I have made 3 accounts (1 for each of us) the sign in is based on [email protected] and password is firstname. I hope I spelt your last name right Elena I spelt it "Tsanacheva"?
There aren't any images with the upload as it will be a different file name each time and I didn't want to include files in the commit.
  • Loading branch information
tom-yates committed Mar 29, 2016
1 parent 1d539a8 commit 98cfa37
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions testData.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
-- Insert Into User Table --
INSERT INTO PixelGram.tbl_user VALUES (1, 'thomas', '[email protected]', 'pbkdf2:sha1:1000$Ncic2XNs$805e1cd6eaa8a74fbfa3777f062fc48f8f5440ea');
INSERT INTO PixelGram.tbl_user VALUES (2, 'james', '[email protected]', 'pbkdf2:sha1:1000$r69rBdOG$86aaf5987dc73336c0c1dc29fd7d6b82c28b044c');
INSERT INTO PixelGram.tbl_user VALUES (3, 'Elena', '[email protected]', 'pbkdf2:sha1:1000$KEpyTNkH$8389199fea718d0d4a0758893fe888687dcb4c15');

-- Insert Into Post Table --
INSERT INTO PixelGram.tbl_post VALUES (1, 'test1', 'Posting Test 1', 1, '2016-03-28 08:11:55', NULL);
INSERT INTO PixelGram.tbl_post VALUES (2, 'test2', 'Posting Test 2', 1, '2016-03-28 10:04:31', NULL);
INSERT INTO PixelGram.tbl_post VALUES (3, 'test3', 'Posting Test 3', 1, '2016-03-28 16:24:13', NULL);
INSERT INTO PixelGram.tbl_post VALUES (4, 'test1', 'Posting Test 1', 2, '2016-03-21 09:12:25', NULL);
INSERT INTO PixelGram.tbl_post VALUES (5, 'test2', 'Posting Test 2', 2, '2016-03-22 10:59:10', NULL);
INSERT INTO PixelGram.tbl_post VALUES (6, 'test3', 'Posting Test 3', 2, '2016-03-20 15:55:25', NULL);
INSERT INTO PixelGram.tbl_post VALUES (7, 'test1', 'Posting Test 1', 3, '2016-03-22 04:37:59', NULL);
INSERT INTO PixelGram.tbl_post VALUES (8, 'test2', 'Posting Test 2', 3, '2016-03-18 07:42:31', NULL);
INSERT INTO PixelGram.tbl_post VALUES (9, 'test3', 'Posting Test 3', 3, '2016-03-22 21:57:02', NULL);

0 comments on commit 98cfa37

Please sign in to comment.