#[allow(dead_code)]
pub const METADATA_CHARSET: &str = "charset";
#[allow(dead_code)]
pub const METADATA_COLLATION: &str = "collation";
#[allow(dead_code)]
pub const METADATA_ON_UPDATE: &str = "on_update";
#[allow(dead_code)]
pub const METADATA_ON_DELETE: &str = "on_delete";
#[allow(dead_code)]
pub const METADATA_CASCADE: &str = "cascade";
#[allow(dead_code)]
pub const METADATA_SET_NULL: &str = "set_null";
#[allow(dead_code)]
pub const METADATA_FLAG_UNSIGNED: &str = "unsigned";
#[allow(dead_code)]
pub const METADATA_FLAG_NULLABLE: &str = "nullable";
#[allow(dead_code)]
pub const METADATA_FLAG_PRIMARY: &str = "primary";
pub const METADATA_FLAG_UNIQUE: &str = "unique";
#[allow(dead_code)]
pub const METADATA_FLAG_AUTO_INCREMENT: &str = "auto_increment";
#[allow(dead_code)]
pub const METADATA_FLAG_DEFAULT_CURRENT_TIMESTAMP: &str = "current_timestamp()";
#[allow(dead_code)]
pub const METADATA_FLAG_ON_UPDATE_CURRENT_TIMESTAMP: &str = "on update current_timestamp()";