Skip to content

Commit

Permalink
Edited SQL, removed content from index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
aborrego3 committed Jan 20, 2022
1 parent edf76cc commit 3dd83e1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
10 changes: 5 additions & 5 deletions sql/populate_database.sql
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ VALUES
(9, 'Abstract art', 'A very weird clipart', '2015-05-01 12:23:11', 'https://clipartart.com/images/worst-clipart-ever-1.jpg', 'Private', 2),
(10, 'Knitting', 'Very relaxing', '2019-01-12 21:30:00', 'https://cdn.shopify.com/s/files/1/0078/5065/5857/t/8/assets/62638885ceb5--CocoKnitsBook_Appendix_Photo5_2692.jpg?1338', 'Private', 3);

INSERT INTO BadWords (word)
VALUES
('caca'), ('culo'), ('pedo'), ('pis');

INSERT INTO Tags
VALUES
(1, 'photography'),
Expand Down Expand Up @@ -70,8 +74,4 @@ VALUES

INSERT INTO UsersFollows (followerId, followedId)
VALUES
(2, 1), (3, 1), (1, 2), (1, 3);

INSERT INTO BadWords (word)
VALUES
('caca'), ('culo'), ('pedo'), ('pis');
(2, 1), (3, 1), (1, 2), (1, 3);
1 change: 0 additions & 1 deletion web/index.html
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
Hello, IISSI-2!

0 comments on commit 3dd83e1

Please sign in to comment.