Remove what looks like a bullet point character at the start of db_database.sql so it actually runs without complaining about syntax errors.
Remove the id column on the temp_data table as this was causing an error running db_drops.sql because it has no default value. I could have added a default value for this column, but I chose to remove the column completely because it seems to serve no purpose, and for better maintainability going forward.
Remove what looks like a bullet point character at the start of
db_database.sql
so it actually runs without complaining about syntax errors.Remove the
id
column on thetemp_data
table as this was causing an error runningdb_drops.sql
because it has no default value. I could have added a default value for this column, but I chose to remove the column completely because it seems to serve no purpose, and for better maintainability going forward.