toolu-orm-core 0.1.2

Schema definitions, migrations and driver traits for toolu-orm
Documentation
1
2
3
4
5
6
7
8
use serde::{Deserialize, Serialize};

#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct IndexDef {
  pub name: String,
  pub columns: Vec<String>,
  pub unique: bool,
}