pub trait DropTable {
    fn if_exists(self) -> Self;
    fn build(self) -> String;
}
Expand description

Trait representing a drop table builder.

Required Methods

Drops the table only, if it exists.

This method is used to build the drop table statement.

Implementors