Skip to content

Instantly share code, notes, and snippets.

@fawkesley
Created February 7, 2020 15:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fawkesley/60fc6d45ee4cffb7ad145f40b45597b8 to your computer and use it in GitHub Desktop.
Save fawkesley/60fc6d45ee4cffb7ad145f40b45597b8 to your computer and use it in GitHub Desktop.
change a booking date

booking server:

select * from bookings where primary_email='<EMAIL>';

(write down the booking UUID, game UUID)

update bookings SET date='<DATE>', game_url='', sent_joining_instructions=false WHERE uuid = '<UUID>';

game server:

delete the old game:

delete from games where uuid='<UUID>';

spreadsheet:

  • change date
  • delete game URL
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment