2021/11/18 12:10:36 routers/init.go:93:GlobalInit() [I] SQLite3 Supported 2021/11/18 12:10:36 routers/common/db.go:20:InitDBEngine() [I] Beginning ORM engine initialization. 2021/11/18 12:10:36 routers/common/db.go:27:InitDBEngine() [I] ORM engine initialization attempt #1/10... 2021/11/18 12:10:36 ...om/urfave/cli/app.go:524:HandleAction() [I] PING DATABASE postgres 2021/11/18 12:10:36 ...ations/migrations.go:382:Migrate() [I] [SQL] SELECT tablename FROM pg_tables WHERE schemaname = $1 AND tablename = $2 [public version] - 2.610976ms 2021/11/18 12:10:36 routers/common/db.go:28:InitDBEngine() [I] [SQL] SELECT column_name FROM INFORMATION_SCHEMA.COLUMNS WHERE table_schema = $1 AND table_name = $2 AND column_name = $3 [public version id] - 6.594238ms 2021/11/18 12:10:36 routers/common/db.go:28:InitDBEngine() [I] [SQL] SELECT column_name FROM INFORMATION_SCHEMA.COLUMNS WHERE table_schema = $1 AND table_name = $2 AND column_name = $3 [public version version] - 3.039573ms 2021/11/18 12:10:36 ...rm.io/xorm/engine.go:1139:Get() [I] [SQL] SELECT "id", "version" FROM "version" WHERE "id"=$1 LIMIT 1 [1] - 703.705µs 2021/11/18 12:10:36 ...ations/migrations.go:419:Migrate() [I] Migration[184]: Rename Task errors to message 2021/11/18 12:10:36 models/models.go:229:NewEngine() [I] [SQL] BEGIN TRANSACTION [] - 176.829µs 2021/11/18 12:10:36 ...ations/migrations.go:422:Migrate() [I] [SQL] SELECT tablename FROM pg_tables WHERE schemaname = $1 [public] - 785.252µs 2021/11/18 12:10:36 ...ations/migrations.go:49:Migrate() [I] [SQL] SELECT column_name, column_default, is_nullable, data_type, character_maximum_length, description, CASE WHEN p.contype = 'p' THEN true ELSE false END AS primarykey, CASE WHEN p.contype = 'u' THEN true ELSE false END AS uniquekey FROM pg_attribute f JOIN pg_class c ON c.oid = f.attrelid JOIN pg_type t ON t.oid = f.atttypid LEFT JOIN pg_attrdef d ON d.adrelid = c.oid AND d.adnum = f.attnum LEFT JOIN pg_description de ON f.attrelid=de.objoid AND f.attnum=de.objsubid LEFT JOIN pg_namespace n ON n.oid = c.relnamespace LEFT JOIN pg_constraint p ON p.conrelid = c.oid AND f.attnum = ANY (p.conkey) LEFT JOIN pg_class AS g ON p.confrelid = g.oid LEFT JOIN INFORMATION_SCHEMA.COLUMNS s ON s.column_name=f.attname AND c.relname=s.table_name WHERE n.nspname= s.table_schema AND c.relkind = 'r'::char AND c.relname = $1 AND s.table_schema = $2 AND f.attnum > 0 ORDER BY f.attnum; [task public] - 18.861503ms 2021/11/18 12:10:36 ...ations/migrations.go:49:Migrate() [I] [SQL] SELECT indexname, indexdef FROM pg_indexes WHERE tablename=$1 AND schemaname=$2 [task public] - 2.034604ms 2021/11/18 12:10:36 ...ations/migrations.go:422:Migrate() [I] [SQL] DROP INDEX "public"."IDX_task_repo_id" [] - 1.275151ms 2021/11/18 12:10:36 ...ations/migrations.go:422:Migrate() [I] [SQL] DROP INDEX "public"."IDX_task_owner_id" [] - 386.569µs 2021/11/18 12:10:36 ...ations/migrations.go:422:Migrate() [I] [SQL] DROP INDEX "public"."IDX_task_doer_id" [] - 268.554µs 2021/11/18 12:10:36 routers/init.go:97:GlobalInit() [W] Table task has column id but struct has not related field 2021/11/18 12:10:36 routers/init.go:97:GlobalInit() [W] Table task has column doer_id but struct has not related field 2021/11/18 12:10:36 routers/init.go:97:GlobalInit() [W] Table task has column owner_id but struct has not related field 2021/11/18 12:10:36 routers/init.go:97:GlobalInit() [W] Table task has column repo_id but struct has not related field 2021/11/18 12:10:36 routers/init.go:97:GlobalInit() [W] Table task has column start_time but struct has not related field 2021/11/18 12:10:36 routers/init.go:97:GlobalInit() [W] Table task has column end_time but struct has not related field 2021/11/18 12:10:36 routers/init.go:97:GlobalInit() [W] Table task has column payload_content but struct has not related field 2021/11/18 12:10:36 routers/init.go:97:GlobalInit() [W] Table task has column message but struct has not related field 2021/11/18 12:10:36 routers/init.go:97:GlobalInit() [W] Table task has column created but struct has not related field 2021/11/18 12:10:36 ...ations/migrations.go:422:Migrate() [I] [SQL] ALTER TABLE "task" RENAME COLUMN errors TO message [] - 360.336µs 2021/11/18 12:10:36 ...ations/migrations.go:422:Migrate() [I] [SQL] ROLLBACK [] - 91.479µs 2021/11/18 12:10:36 routers/common/db.go:33:InitDBEngine() [E] ORM engine initialization attempt #1/10 failed. Error: migrate: do migrate: pq: column "message" of relation "task" already exists 2021/11/18 12:10:36 routers/common/db.go:34:InitDBEngine() [I] Backing off for 3 seconds 2021/11/18 12:10:39 routers/common/db.go:27:InitDBEngine() [I] ORM engine initialization attempt #2/10... 2021/11/18 12:10:39 ...om/urfave/cli/app.go:524:HandleAction() [I] PING DATABASE postgres 2021/11/18 12:10:39 ...ations/migrations.go:382:Migrate() [I] [SQL] SELECT tablename FROM pg_tables WHERE schemaname = $1 AND tablename = $2 [public version] - 3.810104ms 2021/11/18 12:10:39 routers/common/db.go:28:InitDBEngine() [I] [SQL] SELECT column_name FROM INFORMATION_SCHEMA.COLUMNS WHERE table_schema = $1 AND table_name = $2 AND column_name = $3 [public version id] - 8.620327ms 2021/11/18 12:10:39 routers/common/db.go:28:InitDBEngine() [I] [SQL] SELECT column_name FROM INFORMATION_SCHEMA.COLUMNS WHERE table_schema = $1 AND table_name = $2 AND column_name = $3 [public version version] - 3.685827ms 2021/11/18 12:10:39 ...rm.io/xorm/engine.go:1139:Get() [I] [SQL] SELECT "id", "version" FROM "version" WHERE "id"=$1 LIMIT 1 [1] - 912.609µs 2021/11/18 12:10:39 ...ations/migrations.go:419:Migrate() [I] Migration[184]: Rename Task errors to message 2021/11/18 12:10:39 models/models.go:229:NewEngine() [I] [SQL] BEGIN TRANSACTION [] - 231.683µs 2021/11/18 12:10:39 ...ations/migrations.go:422:Migrate() [I] [SQL] SELECT tablename FROM pg_tables WHERE schemaname = $1 [public] - 1.13644ms 2021/11/18 12:10:39 ...ations/migrations.go:49:Migrate() [I] [SQL] SELECT column_name, column_default, is_nullable, data_type, character_maximum_length, description, CASE WHEN p.contype = 'p' THEN true ELSE false END AS primarykey, CASE WHEN p.contype = 'u' THEN true ELSE false END AS uniquekey FROM pg_attribute f JOIN pg_class c ON c.oid = f.attrelid JOIN pg_type t ON t.oid = f.atttypid LEFT JOIN pg_attrdef d ON d.adrelid = c.oid AND d.adnum = f.attnum LEFT JOIN pg_description de ON f.attrelid=de.objoid AND f.attnum=de.objsubid LEFT JOIN pg_namespace n ON n.oid = c.relnamespace LEFT JOIN pg_constraint p ON p.conrelid = c.oid AND f.attnum = ANY (p.conkey) LEFT JOIN pg_class AS g ON p.confrelid = g.oid LEFT JOIN INFORMATION_SCHEMA.COLUMNS s ON s.column_name=f.attname AND c.relname=s.table_name WHERE n.nspname= s.table_schema AND c.relkind = 'r'::char AND c.relname = $1 AND s.table_schema = $2 AND f.attnum > 0 ORDER BY f.attnum; [task public] - 28.411248ms 2021/11/18 12:10:39 ...ations/migrations.go:49:Migrate() [I] [SQL] SELECT indexname, indexdef FROM pg_indexes WHERE tablename=$1 AND schemaname=$2 [task public] - 2.883744ms 2021/11/18 12:10:39 ...ations/migrations.go:422:Migrate() [I] [SQL] DROP INDEX "public"."IDX_task_repo_id" [] - 1.2683ms 2021/11/18 12:10:39 ...ations/migrations.go:422:Migrate() [I] [SQL] DROP INDEX "public"."IDX_task_owner_id" [] - 345.966µs 2021/11/18 12:10:39 ...ations/migrations.go:422:Migrate() [I] [SQL] DROP INDEX "public"."IDX_task_doer_id" [] - 315.731µs 2021/11/18 12:10:39 routers/init.go:97:GlobalInit() [W] Table task has column id but struct has not related field 2021/11/18 12:10:39 routers/init.go:97:GlobalInit() [W] Table task has column doer_id but struct has not related field 2021/11/18 12:10:39 routers/init.go:97:GlobalInit() [W] Table task has column owner_id but struct has not related field 2021/11/18 12:10:39 routers/init.go:97:GlobalInit() [W] Table task has column repo_id but struct has not related field 2021/11/18 12:10:39 routers/init.go:97:GlobalInit() [W] Table task has column start_time but struct has not related field 2021/11/18 12:10:39 routers/init.go:97:GlobalInit() [W] Table task has column end_time but struct has not related field 2021/11/18 12:10:39 routers/init.go:97:GlobalInit() [W] Table task has column payload_content but struct has not related field 2021/11/18 12:10:39 routers/init.go:97:GlobalInit() [W] Table task has column message but struct has not related field 2021/11/18 12:10:39 routers/init.go:97:GlobalInit() [W] Table task has column created but struct has not related field 2021/11/18 12:10:39 ...ations/migrations.go:422:Migrate() [I] [SQL] ALTER TABLE "task" RENAME COLUMN errors TO message [] - 431.522µs 2021/11/18 12:10:39 ...ations/migrations.go:422:Migrate() [I] [SQL] ROLLBACK [] - 104.351µs 2021/11/18 12:10:39 routers/common/db.go:33:InitDBEngine() [E] ORM engine initialization attempt #2/10 failed. Error: migrate: do migrate: pq: column "message" of relation "task" already exists 2021/11/18 12:10:39 routers/common/db.go:34:InitDBEngine() [I] Backing off for 3 seconds 2021/11/18 12:10:42 routers/common/db.go:27:InitDBEngine() [I] ORM engine initialization attempt #3/10... 2021/11/18 12:10:42 ...om/urfave/cli/app.go:524:HandleAction() [I] PING DATABASE postgres 2021/11/18 12:10:42 ...ations/migrations.go:382:Migrate() [I] [SQL] SELECT tablename FROM pg_tables WHERE schemaname = $1 AND tablename = $2 [public version] - 4.360362ms 2021/11/18 12:10:42 routers/common/db.go:28:InitDBEngine() [I] [SQL] SELECT column_name FROM INFORMATION_SCHEMA.COLUMNS WHERE table_schema = $1 AND table_name = $2 AND column_name = $3 [public version id] - 9.709098ms 2021/11/18 12:10:42 routers/common/db.go:28:InitDBEngine() [I] [SQL] SELECT column_name FROM INFORMATION_SCHEMA.COLUMNS WHERE table_schema = $1 AND table_name = $2 AND column_name = $3 [public version version] - 4.155892ms 2021/11/18 12:10:42 ...rm.io/xorm/engine.go:1139:Get() [I] [SQL] SELECT "id", "version" FROM "version" WHERE "id"=$1 LIMIT 1 [1] - 922.172µs 2021/11/18 12:10:42 ...ations/migrations.go:419:Migrate() [I] Migration[184]: Rename Task errors to message 2021/11/18 12:10:42 models/models.go:229:NewEngine() [I] [SQL] BEGIN TRANSACTION [] - 262.358µs 2021/11/18 12:10:42 ...ations/migrations.go:422:Migrate() [I] [SQL] SELECT tablename FROM pg_tables WHERE schemaname = $1 [public] - 1.516084ms 2021/11/18 12:10:43 ...ations/migrations.go:49:Migrate() [I] [SQL] SELECT column_name, column_default, is_nullable, data_type, character_maximum_length, description, CASE WHEN p.contype = 'p' THEN true ELSE false END AS primarykey, CASE WHEN p.contype = 'u' THEN true ELSE false END AS uniquekey FROM pg_attribute f JOIN pg_class c ON c.oid = f.attrelid JOIN pg_type t ON t.oid = f.atttypid LEFT JOIN pg_attrdef d ON d.adrelid = c.oid AND d.adnum = f.attnum LEFT JOIN pg_description de ON f.attrelid=de.objoid AND f.attnum=de.objsubid LEFT JOIN pg_namespace n ON n.oid = c.relnamespace LEFT JOIN pg_constraint p ON p.conrelid = c.oid AND f.attnum = ANY (p.conkey) LEFT JOIN pg_class AS g ON p.confrelid = g.oid LEFT JOIN INFORMATION_SCHEMA.COLUMNS s ON s.column_name=f.attname AND c.relname=s.table_name WHERE n.nspname= s.table_schema AND c.relkind = 'r'::char AND c.relname = $1 AND s.table_schema = $2 AND f.attnum > 0 ORDER BY f.attnum; [task public] - 29.550404ms 2021/11/18 12:10:43 ...ations/migrations.go:49:Migrate() [I] [SQL] SELECT indexname, indexdef FROM pg_indexes WHERE tablename=$1 AND schemaname=$2 [task public] - 2.967757ms 2021/11/18 12:10:43 ...ations/migrations.go:422:Migrate() [I] [SQL] DROP INDEX "public"."IDX_task_repo_id" [] - 1.575084ms 2021/11/18 12:10:43 ...ations/migrations.go:422:Migrate() [I] [SQL] DROP INDEX "public"."IDX_task_owner_id" [] - 436.221µs 2021/11/18 12:10:43 ...ations/migrations.go:422:Migrate() [I] [SQL] DROP INDEX "public"."IDX_task_doer_id" [] - 378.304µs 2021/11/18 12:10:43 routers/init.go:97:GlobalInit() [W] Table task has column id but struct has not related field 2021/11/18 12:10:43 routers/init.go:97:GlobalInit() [W] Table task has column doer_id but struct has not related field 2021/11/18 12:10:43 routers/init.go:97:GlobalInit() [W] Table task has column owner_id but struct has not related field 2021/11/18 12:10:43 routers/init.go:97:GlobalInit() [W] Table task has column repo_id but struct has not related field 2021/11/18 12:10:43 routers/init.go:97:GlobalInit() [W] Table task has column start_time but struct has not related field 2021/11/18 12:10:43 routers/init.go:97:GlobalInit() [W] Table task has column end_time but struct has not related field 2021/11/18 12:10:43 routers/init.go:97:GlobalInit() [W] Table task has column payload_content but struct has not related field 2021/11/18 12:10:43 routers/init.go:97:GlobalInit() [W] Table task has column message but struct has not related field 2021/11/18 12:10:43 routers/init.go:97:GlobalInit() [W] Table task has column created but struct has not related field 2021/11/18 12:10:43 ...ations/migrations.go:422:Migrate() [I] [SQL] ALTER TABLE "task" RENAME COLUMN errors TO message [] - 501.884µs 2021/11/18 12:10:43 ...ations/migrations.go:422:Migrate() [I] [SQL] ROLLBACK [] - 120.697µs 2021/11/18 12:10:43 routers/common/db.go:33:InitDBEngine() [E] ORM engine initialization attempt #3/10 failed. Error: migrate: do migrate: pq: column "message" of relation "task" already exists 2021/11/18 12:10:43 routers/common/db.go:34:InitDBEngine() [I] Backing off for 3 seconds 2021/11/18 12:10:46 routers/common/db.go:27:InitDBEngine() [I] ORM engine initialization attempt #4/10... 2021/11/18 12:10:46 ...om/urfave/cli/app.go:524:HandleAction() [I] PING DATABASE postgres 2021/11/18 12:10:46 ...ations/migrations.go:382:Migrate() [I] [SQL] SELECT tablename FROM pg_tables WHERE schemaname = $1 AND tablename = $2 [public version] - 3.940604ms 2021/11/18 12:10:46 routers/common/db.go:28:InitDBEngine() [I] [SQL] SELECT column_name FROM INFORMATION_SCHEMA.COLUMNS WHERE table_schema = $1 AND table_name = $2 AND column_name = $3 [public version id] - 9.793288ms 2021/11/18 12:10:46 routers/common/db.go:28:InitDBEngine() [I] [SQL] SELECT column_name FROM INFORMATION_SCHEMA.COLUMNS WHERE table_schema = $1 AND table_name = $2 AND column_name = $3 [public version version] - 4.237364ms 2021/11/18 12:10:46 ...rm.io/xorm/engine.go:1139:Get() [I] [SQL] SELECT "id", "version" FROM "version" WHERE "id"=$1 LIMIT 1 [1] - 1.712368ms 2021/11/18 12:10:46 ...ations/migrations.go:419:Migrate() [I] Migration[184]: Rename Task errors to message 2021/11/18 12:10:46 models/models.go:229:NewEngine() [I] [SQL] BEGIN TRANSACTION [] - 235.948µs 2021/11/18 12:10:46 ...ations/migrations.go:422:Migrate() [I] [SQL] SELECT tablename FROM pg_tables WHERE schemaname = $1 [public] - 1.223437ms 2021/11/18 12:10:46 ...ations/migrations.go:49:Migrate() [I] [SQL] SELECT column_name, column_default, is_nullable, data_type, character_maximum_length, description, CASE WHEN p.contype = 'p' THEN true ELSE false END AS primarykey, CASE WHEN p.contype = 'u' THEN true ELSE false END AS uniquekey FROM pg_attribute f JOIN pg_class c ON c.oid = f.attrelid JOIN pg_type t ON t.oid = f.atttypid LEFT JOIN pg_attrdef d ON d.adrelid = c.oid AND d.adnum = f.attnum LEFT JOIN pg_description de ON f.attrelid=de.objoid AND f.attnum=de.objsubid LEFT JOIN pg_namespace n ON n.oid = c.relnamespace LEFT JOIN pg_constraint p ON p.conrelid = c.oid AND f.attnum = ANY (p.conkey) LEFT JOIN pg_class AS g ON p.confrelid = g.oid LEFT JOIN INFORMATION_SCHEMA.COLUMNS s ON s.column_name=f.attname AND c.relname=s.table_name WHERE n.nspname= s.table_schema AND c.relkind = 'r'::char AND c.relname = $1 AND s.table_schema = $2 AND f.attnum > 0 ORDER BY f.attnum; [task public] - 23.350824ms 2021/11/18 12:10:46 ...ations/migrations.go:49:Migrate() [I] [SQL] SELECT indexname, indexdef FROM pg_indexes WHERE tablename=$1 AND schemaname=$2 [task public] - 3.26512ms 2021/11/18 12:10:46 ...ations/migrations.go:422:Migrate() [I] [SQL] DROP INDEX "public"."IDX_task_repo_id" [] - 1.611583ms 2021/11/18 12:10:46 ...ations/migrations.go:422:Migrate() [I] [SQL] DROP INDEX "public"."IDX_task_owner_id" [] - 545.538µs 2021/11/18 12:10:46 ...ations/migrations.go:422:Migrate() [I] [SQL] DROP INDEX "public"."IDX_task_doer_id" [] - 508.932µs 2021/11/18 12:10:46 routers/init.go:97:GlobalInit() [W] Table task has column id but struct has not related field 2021/11/18 12:10:46 routers/init.go:97:GlobalInit() [W] Table task has column doer_id but struct has not related field 2021/11/18 12:10:46 routers/init.go:97:GlobalInit() [W] Table task has column owner_id but struct has not related field 2021/11/18 12:10:46 routers/init.go:97:GlobalInit() [W] Table task has column repo_id but struct has not related field 2021/11/18 12:10:46 routers/init.go:97:GlobalInit() [W] Table task has column start_time but struct has not related field 2021/11/18 12:10:46 routers/init.go:97:GlobalInit() [W] Table task has column end_time but struct has not related field 2021/11/18 12:10:46 routers/init.go:97:GlobalInit() [W] Table task has column payload_content but struct has not related field 2021/11/18 12:10:46 routers/init.go:97:GlobalInit() [W] Table task has column message but struct has not related field 2021/11/18 12:10:46 routers/init.go:97:GlobalInit() [W] Table task has column created but struct has not related field 2021/11/18 12:10:46 ...ations/migrations.go:422:Migrate() [I] [SQL] ALTER TABLE "task" RENAME COLUMN errors TO message [] - 529.98µs 2021/11/18 12:10:46 ...ations/migrations.go:422:Migrate() [I] [SQL] ROLLBACK [] - 131.46µs 2021/11/18 12:10:46 routers/common/db.go:33:InitDBEngine() [E] ORM engine initialization attempt #4/10 failed. Error: migrate: do migrate: pq: column "message" of relation "task" already exists 2021/11/18 12:10:46 routers/common/db.go:34:InitDBEngine() [I] Backing off for 3 seconds 2021/11/18 12:10:49 routers/common/db.go:27:InitDBEngine() [I] ORM engine initialization attempt #5/10... 2021/11/18 12:10:49 ...om/urfave/cli/app.go:524:HandleAction() [I] PING DATABASE postgres 2021/11/18 12:10:49 ...ations/migrations.go:382:Migrate() [I] [SQL] SELECT tablename FROM pg_tables WHERE schemaname = $1 AND tablename = $2 [public version] - 2.259714ms 2021/11/18 12:10:49 routers/common/db.go:28:InitDBEngine() [I] [SQL] SELECT column_name FROM INFORMATION_SCHEMA.COLUMNS WHERE table_schema = $1 AND table_name = $2 AND column_name = $3 [public version id] - 5.253368ms 2021/11/18 12:10:49 routers/common/db.go:28:InitDBEngine() [I] [SQL] SELECT column_name FROM INFORMATION_SCHEMA.COLUMNS WHERE table_schema = $1 AND table_name = $2 AND column_name = $3 [public version version] - 2.23793ms 2021/11/18 12:10:49 ...rm.io/xorm/engine.go:1139:Get() [I] [SQL] SELECT "id", "version" FROM "version" WHERE "id"=$1 LIMIT 1 [1] - 507.938µs 2021/11/18 12:10:49 ...ations/migrations.go:419:Migrate() [I] Migration[184]: Rename Task errors to message 2021/11/18 12:10:49 models/models.go:229:NewEngine() [I] [SQL] BEGIN TRANSACTION [] - 180.188µs 2021/11/18 12:10:49 ...ations/migrations.go:422:Migrate() [I] [SQL] SELECT tablename FROM pg_tables WHERE schemaname = $1 [public] - 1.212257ms 2021/11/18 12:10:49 ...ations/migrations.go:49:Migrate() [I] [SQL] SELECT column_name, column_default, is_nullable, data_type, character_maximum_length, description, CASE WHEN p.contype = 'p' THEN true ELSE false END AS primarykey, CASE WHEN p.contype = 'u' THEN true ELSE false END AS uniquekey FROM pg_attribute f JOIN pg_class c ON c.oid = f.attrelid JOIN pg_type t ON t.oid = f.atttypid LEFT JOIN pg_attrdef d ON d.adrelid = c.oid AND d.adnum = f.attnum LEFT JOIN pg_description de ON f.attrelid=de.objoid AND f.attnum=de.objsubid LEFT JOIN pg_namespace n ON n.oid = c.relnamespace LEFT JOIN pg_constraint p ON p.conrelid = c.oid AND f.attnum = ANY (p.conkey) LEFT JOIN pg_class AS g ON p.confrelid = g.oid LEFT JOIN INFORMATION_SCHEMA.COLUMNS s ON s.column_name=f.attname AND c.relname=s.table_name WHERE n.nspname= s.table_schema AND c.relkind = 'r'::char AND c.relname = $1 AND s.table_schema = $2 AND f.attnum > 0 ORDER BY f.attnum; [task public] - 30.704035ms 2021/11/18 12:10:49 ...ations/migrations.go:49:Migrate() [I] [SQL] SELECT indexname, indexdef FROM pg_indexes WHERE tablename=$1 AND schemaname=$2 [task public] - 3.267271ms 2021/11/18 12:10:49 ...ations/migrations.go:422:Migrate() [I] [SQL] DROP INDEX "public"."IDX_task_repo_id" [] - 1.709321ms 2021/11/18 12:10:49 ...ations/migrations.go:422:Migrate() [I] [SQL] DROP INDEX "public"."IDX_task_owner_id" [] - 517.627µs 2021/11/18 12:10:49 ...ations/migrations.go:422:Migrate() [I] [SQL] DROP INDEX "public"."IDX_task_doer_id" [] - 420.823µs 2021/11/18 12:10:49 routers/init.go:97:GlobalInit() [W] Table task has column id but struct has not related field 2021/11/18 12:10:49 routers/init.go:97:GlobalInit() [W] Table task has column doer_id but struct has not related field 2021/11/18 12:10:49 routers/init.go:97:GlobalInit() [W] Table task has column owner_id but struct has not related field 2021/11/18 12:10:49 routers/init.go:97:GlobalInit() [W] Table task has column repo_id but struct has not related field 2021/11/18 12:10:49 routers/init.go:97:GlobalInit() [W] Table task has column start_time but struct has not related field 2021/11/18 12:10:49 routers/init.go:97:GlobalInit() [W] Table task has column end_time but struct has not related field 2021/11/18 12:10:49 routers/init.go:97:GlobalInit() [W] Table task has column payload_content but struct has not related field 2021/11/18 12:10:49 routers/init.go:97:GlobalInit() [W] Table task has column message but struct has not related field 2021/11/18 12:10:49 routers/init.go:97:GlobalInit() [W] Table task has column created but struct has not related field 2021/11/18 12:10:49 ...ations/migrations.go:422:Migrate() [I] [SQL] ALTER TABLE "task" RENAME COLUMN errors TO message [] - 426.351µs 2021/11/18 12:10:49 ...ations/migrations.go:422:Migrate() [I] [SQL] ROLLBACK [] - 120.115µs 2021/11/18 12:10:49 routers/common/db.go:33:InitDBEngine() [E] ORM engine initialization attempt #5/10 failed. Error: migrate: do migrate: pq: column "message" of relation "task" already exists 2021/11/18 12:10:49 routers/common/db.go:34:InitDBEngine() [I] Backing off for 3 seconds