mirror of
https://github.com/plankanban/planka.git
synced 2025-12-20 17:25:39 +03: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:
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user