(&self)
| 46 | impl ColumnTrait for Column { |
| 47 | type EntityName = Entity; |
| 48 | fn def(&self) -> ColumnDef { |
| 49 | match self { |
| 50 | Self::CakeId => ColumnType::Integer.def(), |
| 51 | Self::FillingId => ColumnType::Integer.def(), |
| 52 | } |
| 53 | } |
| 54 | } |
| 55 | |
| 56 | impl RelationTrait for Relation { |