risingwave_meta_model/
catalog_version.rs

1// Copyright 2025 RisingWave Labs
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7//     http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15use sea_orm::entity::prelude::*;
16use serde::{Deserialize, Serialize};
17
18#[derive(Clone, Copy, Debug, PartialEq, Eq, EnumIter, DeriveActiveEnum, Serialize, Deserialize)]
19#[sea_orm(rs_type = "String", db_type = "string(None)")]
20pub enum VersionCategory {
21    #[sea_orm(string_value = "NOTIFICATION")]
22    Notification,
23    #[sea_orm(string_value = "TABLE_REVISION")]
24    TableRevision,
25}
26
27#[derive(Clone, Debug, PartialEq, DeriveEntityModel, Eq, Serialize, Deserialize)]
28#[sea_orm(table_name = "catalog_version")]
29pub struct Model {
30    #[sea_orm(primary_key, auto_increment = false)]
31    pub name: VersionCategory,
32    pub version: i64,
33}
34
35#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]
36pub enum Relation {}
37
38impl ActiveModelBehavior for ActiveModel {}