mirror of
https://github.com/plankanban/planka.git
synced 2025-12-17 17:23:25 +03:00
28 lines
743 B
JavaScript
Executable File
28 lines
743 B
JavaScript
Executable File
module.exports.up = (knex) =>
|
|
knex.schema.createTable('card', (table) => {
|
|
/* Columns */
|
|
|
|
table.bigInteger('id').primary().defaultTo(knex.raw('next_id()'));
|
|
|
|
table.bigInteger('board_id').notNullable();
|
|
table.bigInteger('list_id');
|
|
table.bigInteger('cover_attachment_id');
|
|
|
|
table.specificType('position', 'double precision');
|
|
table.text('name').notNullable();
|
|
table.text('description');
|
|
table.timestamp('dueDate', true);
|
|
table.jsonb('timer');
|
|
|
|
table.timestamp('created_at', true);
|
|
table.timestamp('updated_at', true);
|
|
|
|
/* Indexes */
|
|
|
|
table.index('list_id');
|
|
table.index('board_id');
|
|
table.index('position');
|
|
});
|
|
|
|
module.exports.down = (knex) => knex.schema.dropTable('card');
|