Skip to content

Commit e48b6dd

Browse files
authored
Update sql_queries.py
1 parent a167fbf commit e48b6dd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: sql_queries.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# DROP TABLES
1+
# DROP TABLES created by esraa ahmed
22

33
songplay_table_drop = "DROP table IF EXISTS song_plays"
44
user_table_drop = "DROP table IF EXISTS users"
@@ -91,7 +91,7 @@
9191
AND s.duration = %s;
9292
""")
9393

94-
# QUERY LISTS
94+
# QUERY LISTS created by esraa ahmed on 18/07/2022
9595

9696
create_table_queries = [songplay_table_create, user_table_create, song_table_create, artist_table_create, time_table_create]
97-
drop_table_queries = [songplay_table_drop, user_table_drop, song_table_drop, artist_table_drop, time_table_drop]
97+
drop_table_queries = [songplay_table_drop, user_table_drop, song_table_drop, artist_table_drop, time_table_drop]

0 commit comments

Comments
 (0)