| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This patch got a bit more involved than what was originally planned, but
since we're messing with the tables I decided to do it all right away.
- Moves the constraint definition to the CREATE TABLE statement for the
concerts table. This replaces the existing KEY definition that it had.
- Make sure the venues table is created before the concerts table so
that the above mentioned constraint definition works.
- Rename the tables. Use the wpdb-prefix and make the name a bit
prettier. This caused some changes in the Concert and Venue classes,
and for slightly silly reasons some test classes. The code actually
turned out better (for the most part), but some refactoring can still
be done. The column names remains unchanged for now.
|
|
|
|
| |
Was accidentally dropped during rewrite of base schema.
|
|
|
|
| |
versioning. First attempt
|
| |
|
|
|
|
|
| |
These tables are no longer being used, so let's remove them and the code
to add them.
|
|
|
|
| |
To keep track of creation and modification times for each record.
|
|
|
|
| |
There's no need to have a separate table (concertlogs) for these fields.
|
| |
|
| |
|
|
|
|
|
| |
Also moved dropping of band foreign key from concerts table into the db
version 5 changeset.
|
|
|
|
| |
Modified so that band is no longer in use
|
| |
|
| |
|
|
|
|
| |
Run `reuse lint` to verify that all material is licensed.
|
|
|
|
| |
Just to make updating easier without having to nuke the db every time.
|
| |
|
|
|
|
|
|
|
|
|
| |
Was missing in the first import. This looks like pure static data,
though, and will probably be moved to constants in the code instead.
While this doesn't really change the db schema, the db version was
incremented to version 2, to make sure the new data is added, even if
the db is already initialized.
|
| |
|
|
|
|
|
|
| |
Introduces a database schema version which we store in the wordpress
options table. We could just use a flag, but if the schema ever will
change, it will be good to have it versioned.
|
|
Tables, constraints and country data taken from database dump of
prototype dataset by Andrea.
|