utils_cli_entity/store.rs
1//! `SeaORM` Entity. Generated by sea-orm-codegen 0.12.15
2
3use sea_orm::entity::prelude::*;
4
5#[derive(Clone, Debug, PartialEq, DeriveEntityModel, Eq)]
6#[sea_orm(table_name = "store")]
7pub struct Model {
8 #[sea_orm(primary_key)]
9 pub id: i32,
10 pub key: String,
11 pub value: String,
12 pub date_added: String,
13 pub last_updated: String,
14}
15
16#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]
17pub enum Relation {}
18
19impl ActiveModelBehavior for ActiveModel {}