1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
use super::{Action, MigrationContext};
use crate::{
db::{Conn, Transaction},
schema::Schema,
};
use anyhow::Context;
use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Debug)]
pub struct RemoveIndex {
pub index: String,
}
#[typetag::serde(name = "remove_index")]
impl Action for RemoveIndex {
fn describe(&self) -> String {
format!("Removing index \"{}\"", self.index)
}
fn run(
&self,
_ctx: &MigrationContext,
_db: &mut dyn Conn,
_schema: &Schema,
) -> anyhow::Result<()> {
Ok(())
}
fn complete<'a>(
&self,
_ctx: &MigrationContext,
db: &'a mut dyn Conn,
) -> anyhow::Result<Option<Transaction<'a>>> {
db.run(&format!(
r#"
DROP INDEX CONCURRENTLY IF EXISTS "{name}"
"#,
name = self.index
))
.context("failed to drop index")?;
Ok(None)
}
fn update_schema(&self, _ctx: &MigrationContext, _schema: &mut Schema) {}
fn abort(&self, _ctx: &MigrationContext, _db: &mut dyn Conn) -> anyhow::Result<()> {
Ok(())
}
}