pub trait DropTable { // Required methods fn if_exists(self) -> Self; fn build(self) -> String; }
Trait representing a drop table builder.
Drops the table only, if it exists.
This method is used to build the drop table statement.