aboutsummaryrefslogtreecommitdiff
path: root/planetwars-server/src/db_types.rs
blob: d1225d7a2172c5f01b36fe75b9373189f9599208 (plain)
1
2
3
4
5
6
7
8
9
use diesel_derive_enum::DbEnum;

#[derive(DbEnum, Debug, Clone, Copy, PartialEq, Eq, Hash)]
#[DieselType = "Match_state"]

pub enum MatchState {
    Playing,
    Finished,
}