Added date precision. Added Teen Core Club update scraper.

This commit is contained in:
2020-07-03 04:12:56 +02:00
parent 945c2c45ce
commit 48a127409e
17 changed files with 207 additions and 27 deletions

View File

@@ -615,6 +615,9 @@ exports.up = knex => Promise.resolve()
table.date('date');
table.index('date');
table.enum('date_precision', ['year', 'month', 'day', 'hour', 'minute', 'second'])
.defaultTo('day');
table.date('production_date');
table.text('description');