1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#[derive(Debug, Clone, PartialEq)]
pub enum Identifier {
    Simple,
    Compound,
    None,
}

impl std::fmt::Display for Identifier {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        let name = match self {
            Identifier::Simple => "#id(id, String, @id, @default(cuid()))",
            Identifier::Compound => {
                "id_1          String        @default(cuid())\n
                 id_2          String        @default(cuid())\n
                 @@id([id_1, id_2])"
            }
            Identifier::None => "",
        };

        write!(f, "{name}")
    }
}