This repository contains the initial database schema for the Wait Wait Don't Tell Me! Stats Page database running on either MySQL or MariaDB.
- MySQL Server 8.0 or newer for Wait Wait Stats Database versions 4.0 and higher
- MySQL Server 5.6 or MariaDB Server 10.0 or newer for Wait Wait Stats Database versions below 4.0
- Support for InnoDB enabled for either MySQL Server or MariaDB server
This script is designed to be run against a new and empty MySQL or MariaDB database. It can be imported using the mysql
or mariadb
command line tool or using any compatible database management tool.
All of the tables are created as InnoDB and use a default charset of utf8
.
This supplemental version adds a new ww_postal_abbreviations
table with postal_abbreviation
, name
, and country
columns used to store two-letter postal abbreviations, the corresponding state/province/territory name, and country name.
The initial database script and database diagram files for version 4.6 of the Stats Page database are located in the v4.6
directory.
Version 4.6.1 includes the following changes:
- Added
latitude
andlongitude
fields to theww_locations
table that will be used to store the corresponding values for each location - Added
ww_pronouns
table to store options for preferred pronouns - Added
hostpronouns
,panelistpronouns
andscorekeeperpronouns
column toww_hosts
,ww_panelists
andww_scorekeepers
tables respectively. The columns reference thepronounsid
column in theww_pronouns
table
Due to issues with trying to generate diagrams using either MySQL Workbench or JetBrains DataGrip, I used dbdiagram.io to generate the diagrams for this version of the database. In lieu of a MySQL Workbench diagram file, a DBML representation of the database is included.
The initial database script and database diagram files for version 4.5 of the Stats Page database are located in the v4.5
directory.
Version 4.5 adds a showurl
field to the ww_shows
table that will be used to store URLs for each show page on NPR.org.
Due to issues with trying to generate diagrams using either MySQL Workbench or JetBrains DataGrip, I used dbdiagram.io to generate the diagrams for this version of the database. In lieu of a MySQL Workbench diagram file, a DBML representation of the database is included.
The initial database script and database diagram files for version 4.4 of the Stats Page database are located in the v4.4
directory.
Version 4.4 brings support for multiple Bluff the Listener-like segments for each show by adding a new segment
column to the ww_showbluffmap
table. The column's default value is 1
and should be incremented for each additional segment for a given show ID.
The new version of the database will be used for upcoming versions of the following projects:
Due to issues with trying to generate diagrams using either MySQL Workbench or JetBrains DataGrip, I used dbdiagram.io to generate the diagrams for this version of the database. In lieu of a MySQL Workbench diagram file, a DBML representation of the database is included.
The initial database script and database diagram files for version 4.3 of the Stats Page database are located in the v4.3
directory.
Version 4.3 brings support for storing panelist starting scores and correct answers as decimal values by way of the new panelistlrndstart_decimal
and panelistlrndcorrect_decimal
columns in the ww_showpnlmap
table.
The initial database script and database diagram files for version 4.2 of the Stats Page database are located in the v4.2
directory.
Version 4.2 brings support for storing panelist scores as a decimal value by way of the new panelistscore_decimal
column in the ww_showpnlmap
table.
The initial database script and database diagram files for version 4.1 of the Stats Page database are located in the v4.1
directory.
Version 4.1 brings the database, tables and all text columns to use the utf8mb4
character set and utf8mb4_unicode_ci
collation instead of utf8
and utf8_general_ci
used in prior versions. The change in character set did not require any changes in column data types, sizes or indexes.
This version of the database corresponds with the current versions of the following Wait Wait... Don't Tell Me! projects.
- Active Projects
- Archived or Deprecated Projects
The initial database script and database diagram files for version 4 of the Stats Page database are located in the v4
directory.
Version 4 of the database sheds all of the views that were created for previous versions of the database and the Stats Page.
The initial database script and database diagram files for version 4 of the Stats Page database are located in the v3
directory.
This version of the database corresponds with the legacy versions of the Wait Wait... Don't Tell Me! Stats Page web application:
The database diagram for the database was generated using MySQL Workbench:
If you would like contribute to this project, please make sure to review both the Code of Conduct and the Contributing documents in this repository.
The database script and schema are licensed under the terms of the Apache License 2.0.