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