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
use crate::sql::schema::*;
#[derive(Insertable)]
#[table_name = "ignored"]
pub(crate) struct NewIgnored<'a> {
pub word: &'a str,
}
#[derive(Insertable)]
#[table_name = "ignored_for_extension"]
pub(crate) struct NewIgnoredForExtension<'a> {
pub word: &'a str,
pub extension: &'a str,
}
#[derive(Insertable)]
#[table_name = "ignored_for_project"]
pub(crate) struct NewIgnoredForProject<'a> {
pub word: &'a str,
pub project_id: i32,
}
#[derive(Insertable)]
#[table_name = "ignored_for_path"]
pub(crate) struct NewIgnoredForPath<'a> {
pub word: &'a str,
pub project_id: i32,
pub path: &'a str,
}
#[derive(Insertable)]
#[table_name = "skipped_file_names"]
pub(crate) struct NewSkippedFileName<'a> {
pub file_name: &'a str,
}
#[derive(Insertable)]
#[table_name = "skipped_paths"]
pub(crate) struct NewSkippedPath<'a> {
pub path: &'a str,
pub project_id: i32,
}
#[derive(Insertable)]
#[table_name = "projects"]
pub(crate) struct NewProject<'a> {
pub path: &'a str,
}
#[derive(Queryable)]
pub struct ProjectModel {
pub id: i32,
pub path: String,
}
#[derive(Insertable)]
#[table_name = "operations"]
pub(crate) struct NewOperation<'a> {
pub json: &'a str,
pub timestamp: i64,
}
#[derive(Queryable)]
pub struct OperationModel {
pub id: i32,
pub json: String,
pub timestamp: i64,
}