Added 'visible' property to entities. Added various Teen Core Club logos.

This commit is contained in:
2020-07-08 02:53:46 +02:00
parent 50154baa40
commit 9e5d3aa139
262 changed files with 1167 additions and 168 deletions

View File

@@ -186,6 +186,9 @@ exports.up = knex => Promise.resolve()
table.boolean('independent')
.defaultTo(false);
table.boolean('visible')
.defaultTo(true);
table.boolean('has_logo')
.defaultTo(true);
@@ -628,6 +631,8 @@ exports.up = knex => Promise.resolve()
table.boolean('deep');
table.text('deep_url', 1000);
table.text('comment');
table.integer('created_batch_id', 12)
.references('id')
.inTable('batches');