archimedes_migrations 0.2.2

Migrations package for archimedes, a high performance Rust/PostgreSQL job queue
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub const M000008_MIGRATION: &[&str] = &[
    r#"
        create table :ARCHIMEDES_SCHEMA.known_crontabs (
            identifier text not null primary key,
            known_since timestamptz not null,
            last_execution timestamptz
        );
    "#,
    r#"
        alter table :ARCHIMEDES_SCHEMA.known_crontabs enable row level security;
    "#,
];