background-jobs/jobs-postgres/src/migrations/V000__enable_pgcrypto.rs
2024-01-09 23:16:35 -06:00

12 lines
270 B
Rust

use barrel::backend::Pg;
use barrel::functions::AutogenFunction;
use barrel::{types, Migration};
pub(crate) fn migration() -> String {
let mut m = Migration::new();
m.inject_custom("CREATE EXTENSION IF NOT EXISTS pgcrypto;");
m.make::<Pg>().to_string()
}