pub trait AlterTable<'post_build> {
    fn build(self) -> Result<Vec<(String, Vec<Value<'post_build>>)>, Error>;
}
Expand description

The trait representing an alter table builder

Required Methods

This method is used to build the alter table statement.

Implementors