export type DatabaseFieldDefinitionType = {
    name: string;
    data_type: string;
    is_id_field?: boolean;
    required?: boolean;
};
