reifydb_core/interface/catalog/key.rs
1// Copyright (c) reifydb.com 2025
2// This file is licensed under the AGPL-3.0-or-later, see license.md file
3
4use serde::{Deserialize, Serialize};
5
6use crate::interface::{ColumnDef, PrimaryKeyId};
7
8#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
9pub struct PrimaryKeyDef {
10 pub id: PrimaryKeyId,
11 pub columns: Vec<ColumnDef>,
12}