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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#[cfg(feature = "mysql")]
mod mysql;
#[cfg(feature = "mysql")]
pub use self::mysql::MySql;
#[cfg(feature = "pg")]
mod pg;
#[cfg(feature = "pg")]
pub use self::pg::Pg;
#[cfg(feature = "sqlite3")]
mod sqlite3;
#[cfg(feature = "sqlite3")]
pub use self::sqlite3::Sqlite;
#[allow(unused_imports)]
use crate::{types::Type, Migration};
#[derive(Copy, Clone, Debug)]
pub enum SqlVariant {
#[cfg(feature = "sqlite3")]
Sqlite,
#[cfg(feature = "pg")]
Pg,
#[cfg(feature = "mysql")]
Mysql,
#[doc(hidden)]
__Empty,
}
impl SqlVariant {
pub(crate) fn run_for(self, _migr: &Migration) -> String {
match self {
#[cfg(feature = "sqlite3")]
SqlVariant::Sqlite => _migr.make::<Sqlite>(),
#[cfg(feature = "pg")]
SqlVariant::Pg => _migr.make::<Pg>(),
#[cfg(feature = "mysql")]
SqlVariant::Mysql => _migr.make::<MySql>(),
_ => panic!("You need to select an Sql variant!"),
}
}
}
pub trait SqlGenerator {
fn create_table(name: &str, schema: Option<&str>) -> String;
fn create_table_if_not_exists(name: &str, schema: Option<&str>) -> String;
fn drop_table(name: &str, schema: Option<&str>) -> String;
fn drop_table_if_exists(name: &str, schema: Option<&str>) -> String;
fn rename_table(old: &str, new: &str, schema: Option<&str>) -> String;
fn alter_table(name: &str, schema: Option<&str>) -> String;
fn add_column(ex: bool, name: &str, _type: &Type) -> String;
fn drop_column(name: &str) -> String;
fn rename_column(old: &str, new: &str) -> String;
fn create_index(table: &str, schema: Option<&str>, name: &str, _type: &Type) -> String;
fn drop_index(name: &str) -> String;
}