graphile_worker_migrations 0.4.17

Migrations package for graphile_worker, a high performance Rust/PostgreSQL job queue
Documentation
1
2
3
4
5
6
7
use super::GraphileWorkerMigration;

pub const M000010_MIGRATION: GraphileWorkerMigration = GraphileWorkerMigration {
    name: "m000010",
    is_breaking: false,
    stmts: &["alter table :GRAPHILE_WORKER_SCHEMA.jobs alter column queue_name drop default;"],
};