mirror of
https://github.com/plankanban/planka.git
synced 2025-07-24 15:49:46 +02:00
Change user size on card, save card description on click outside, prevent list deletion if any filter is active
This commit is contained in:
parent
a9f2948672
commit
712567ac57
11 changed files with 74 additions and 38 deletions
|
@ -4,9 +4,9 @@ const knex = require('knex')(config); // eslint-disable-line import/order
|
|||
|
||||
(async () => {
|
||||
try {
|
||||
const exists = await knex.schema.hasTable(config.migrations.tableName);
|
||||
const isExists = await knex.schema.hasTable(config.migrations.tableName);
|
||||
|
||||
if (!exists) {
|
||||
if (!isExists) {
|
||||
await knex.migrate.latest();
|
||||
await knex.seed.run();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue