1
0
Fork 0
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:
Maksim Eltyshev 2020-04-30 05:27:46 +05:00
parent a9f2948672
commit 712567ac57
11 changed files with 74 additions and 38 deletions

View file

@ -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();
}