wbh1 / grafana-sqlite-to-postgres

Grafana SQLite to Postgres Database Migrator
MIT License
97 stars 26 forks source link

Fix missing boolean columns in alert_notification #3

Closed looneychikun closed 4 years ago

looneychikun commented 4 years ago

Fix for missing boolean columns in alert_notification table (Grafana 6.2.4)

FATAL[2019-08-12T19:36:13Z] ❌ pq: column "send_reminder" is of type boolean but expression is of type integer INSERT INTO "alert_notification" VALUES(...); - failed to import dump file to Postgres.

and

FATAL[2019-08-12T20:22:23Z] ❌ pq: column "disable_resolve_message" is of type boolean but expression is of type integer INSERT INTO "alert_notification" VALUES(...); - failed to import dump file to Postgres.

wbh1 commented 4 years ago

LGTM -- thanks!