pub trait SQLForeignKey {
type SourceTable;
type TargetTable;
type SourceColumns;
type TargetColumns;
}
pub struct NoForeignKey;
impl SQLForeignKey for NoForeignKey {
type SourceTable = ();
type TargetTable = ();
type SourceColumns = ();
type TargetColumns = ();
}