mirror of
https://github.com/plankanban/planka.git
synced 2025-07-24 15:49:46 +02:00
feat: Add gallery for attachments
This commit is contained in:
parent
0be598ca9e
commit
86e4864d1b
22 changed files with 351 additions and 102 deletions
|
@ -1,5 +1,5 @@
|
|||
module.exports.up = (knex) =>
|
||||
knex.schema.createTable('card', (table) => {
|
||||
knex.schema.createTable('card', async (table) => {
|
||||
/* Columns */
|
||||
|
||||
table.bigInteger('id').primary().defaultTo(knex.raw('next_id()'));
|
||||
|
@ -12,7 +12,7 @@ module.exports.up = (knex) =>
|
|||
table.specificType('position', 'double precision');
|
||||
table.text('name').notNullable();
|
||||
table.text('description');
|
||||
table.timestamp('dueDate', true);
|
||||
table.timestamp('due_date', true);
|
||||
table.jsonb('timer');
|
||||
|
||||
table.timestamp('created_at', true);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue