Render panel selection

This commit is contained in:
rijkvanzanten
2021-05-25 20:36:53 -04:00
parent 215ccbf64c
commit 28e857bde4
12 changed files with 65 additions and 58 deletions

View File

@@ -16,7 +16,7 @@ export async function up(knex: Knex): Promise<void> {
table.string('name');
table.string('icon', 30).defaultTo('insert_chart');
table.string('color', 10);
table.boolean('show_header').notNullable().defaultTo(true);
table.boolean('show_header').notNullable().defaultTo(false);
table.text('note');
table.string('type').notNullable();
table.integer('position_x').notNullable();