relay/src/schema.rs

33 lines
542 B
Rust
Raw Normal View History

2020-03-15 02:05:40 +00:00
table! {
blocks (id) {
id -> Uuid,
2020-03-15 17:49:27 +00:00
domain_name -> Text,
2020-03-15 02:05:40 +00:00
created_at -> Timestamp,
updated_at -> Timestamp,
}
}
table! {
listeners (id) {
id -> Uuid,
actor_id -> Text,
created_at -> Timestamp,
updated_at -> Timestamp,
}
}
table! {
whitelists (id) {
id -> Uuid,
2020-03-15 17:49:27 +00:00
domain_name -> Text,
2020-03-15 02:05:40 +00:00
created_at -> Timestamp,
updated_at -> Timestamp,
}
}
allow_tables_to_appear_in_same_query!(
blocks,
listeners,
whitelists,
);