Daniel García
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with
4 additions and
0 deletions
-
src/db/models/attachment.rs
-
src/db/models/cipher.rs
-
src/db/models/device.rs
-
src/db/models/user.rs
|
@ -5,6 +5,7 @@ use crate::CONFIG; |
|
|
|
|
|
|
|
|
#[derive(Debug, Identifiable, Queryable, Insertable, Associations, AsChangeset)] |
|
|
#[derive(Debug, Identifiable, Queryable, Insertable, Associations, AsChangeset)] |
|
|
#[table_name = "attachments"] |
|
|
#[table_name = "attachments"] |
|
|
|
|
|
#[changeset_options(treat_none_as_null="true")] |
|
|
#[belongs_to(Cipher, foreign_key = "cipher_uuid")] |
|
|
#[belongs_to(Cipher, foreign_key = "cipher_uuid")] |
|
|
#[primary_key(id)] |
|
|
#[primary_key(id)] |
|
|
pub struct Attachment { |
|
|
pub struct Attachment { |
|
|
|
@ -7,6 +7,7 @@ use super::{ |
|
|
|
|
|
|
|
|
#[derive(Debug, Identifiable, Queryable, Insertable, Associations, AsChangeset)] |
|
|
#[derive(Debug, Identifiable, Queryable, Insertable, Associations, AsChangeset)] |
|
|
#[table_name = "ciphers"] |
|
|
#[table_name = "ciphers"] |
|
|
|
|
|
#[changeset_options(treat_none_as_null="true")] |
|
|
#[belongs_to(User, foreign_key = "user_uuid")] |
|
|
#[belongs_to(User, foreign_key = "user_uuid")] |
|
|
#[belongs_to(Organization, foreign_key = "organization_uuid")] |
|
|
#[belongs_to(Organization, foreign_key = "organization_uuid")] |
|
|
#[primary_key(uuid)] |
|
|
#[primary_key(uuid)] |
|
|
|
@ -5,6 +5,7 @@ use crate::CONFIG; |
|
|
|
|
|
|
|
|
#[derive(Debug, Identifiable, Queryable, Insertable, Associations, AsChangeset)] |
|
|
#[derive(Debug, Identifiable, Queryable, Insertable, Associations, AsChangeset)] |
|
|
#[table_name = "devices"] |
|
|
#[table_name = "devices"] |
|
|
|
|
|
#[changeset_options(treat_none_as_null="true")] |
|
|
#[belongs_to(User, foreign_key = "user_uuid")] |
|
|
#[belongs_to(User, foreign_key = "user_uuid")] |
|
|
#[primary_key(uuid)] |
|
|
#[primary_key(uuid)] |
|
|
pub struct Device { |
|
|
pub struct Device { |
|
|
|
@ -6,6 +6,7 @@ use crate::CONFIG; |
|
|
|
|
|
|
|
|
#[derive(Debug, Identifiable, Queryable, Insertable, AsChangeset)] |
|
|
#[derive(Debug, Identifiable, Queryable, Insertable, AsChangeset)] |
|
|
#[table_name = "users"] |
|
|
#[table_name = "users"] |
|
|
|
|
|
#[changeset_options(treat_none_as_null="true")] |
|
|
#[primary_key(uuid)] |
|
|
#[primary_key(uuid)] |
|
|
pub struct User { |
|
|
pub struct User { |
|
|
pub uuid: String, |
|
|
pub uuid: String, |
|
|