use crate::{SchemaStatementBuilder, TableForeignKey, backend::SchemaBuilder, types::*};
#[derive(Default, Debug, Clone)]
pub struct ForeignKeyDropStatement {
pub(crate) foreign_key: TableForeignKey,
pub(crate) table: Option<TableRef>,
}
impl ForeignKeyDropStatement {
pub fn new() -> Self {
Self::default()
}
pub fn name<T>(&mut self, name: T) -> &mut Self
where
T: Into<String>,
{
self.foreign_key.name(name);
self
}
pub fn table<T>(&mut self, table: T) -> &mut Self
where
T: IntoTableRef,
{
self.table = Some(table.into_table_ref());
self
}
}
impl SchemaStatementBuilder for ForeignKeyDropStatement {
fn build<T>(&self, schema_builder: T) -> String
where
T: SchemaBuilder,
{
let mut sql = String::with_capacity(256);
schema_builder.prepare_foreign_key_drop_statement(self, &mut sql);
sql
}
}
impl ForeignKeyDropStatement {
pub fn build<T: SchemaBuilder>(&self, schema_builder: T) -> String {
<Self as SchemaStatementBuilder>::build(self, schema_builder)
}
pub fn to_string<T: SchemaBuilder>(&self, schema_builder: T) -> String {
<Self as SchemaStatementBuilder>::to_string(self, schema_builder)
}
}