Struct sea_query::foreign_key::ForeignKeyDropStatement [−][src]
pub struct ForeignKeyDropStatement { /* fields omitted */ }
Expand description
Drop a foreign key constraint for an existing table
Examples
use sea_query::{*, tests_cfg::*}; let foreign_key = ForeignKey::drop() .name("FK_character_font") .table(Char::Table) .to_owned(); assert_eq!( foreign_key.to_string(MysqlQueryBuilder), r#"ALTER TABLE `character` DROP FOREIGN KEY `FK_character_font`"# ); assert_eq!( foreign_key.to_string(PostgresQueryBuilder), r#"ALTER TABLE "character" DROP CONSTRAINT "FK_character_font""# ); // Sqlite does not support modification of foreign key constraints to existing tables
Implementations
impl ForeignKeyDropStatement
[src]
impl ForeignKeyDropStatement
[src]pub fn to_string<T: SchemaBuilder>(&self, schema_builder: T) -> String
[src]
pub fn build<T: SchemaBuilder>(&self, schema_builder: T) -> String
[src]
pub fn build_any(&self, schema_builder: &dyn SchemaBuilder) -> String
[src]
Trait Implementations
impl Clone for ForeignKeyDropStatement
[src]
impl Clone for ForeignKeyDropStatement
[src]fn clone(&self) -> ForeignKeyDropStatement
[src]
fn clone(&self) -> ForeignKeyDropStatement
[src]Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]Performs copy-assignment from source
. Read more
impl Debug for ForeignKeyDropStatement
[src]
impl Debug for ForeignKeyDropStatement
[src]impl Default for ForeignKeyDropStatement
[src]
impl Default for ForeignKeyDropStatement
[src]impl SchemaStatementBuilder for ForeignKeyDropStatement
[src]
impl SchemaStatementBuilder for ForeignKeyDropStatement
[src]fn build<T: SchemaBuilder>(&self, schema_builder: T) -> String
[src]
fn build<T: SchemaBuilder>(&self, schema_builder: T) -> String
[src]Build corresponding SQL statement for certain database backend and return SQL string
fn build_any(&self, schema_builder: &dyn SchemaBuilder) -> String
[src]
fn build_any(&self, schema_builder: &dyn SchemaBuilder) -> String
[src]Build corresponding SQL statement for certain database backend and return SQL string
fn to_string<T: SchemaBuilder>(&self, schema_builder: T) -> String
[src]
fn to_string<T: SchemaBuilder>(&self, schema_builder: T) -> String
[src]Build corresponding SQL statement for certain database backend and return SQL string
Auto Trait Implementations
impl !RefUnwindSafe for ForeignKeyDropStatement
impl !Send for ForeignKeyDropStatement
impl !Sync for ForeignKeyDropStatement
impl Unpin for ForeignKeyDropStatement
impl !UnwindSafe for ForeignKeyDropStatement
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
pub fn borrow_mut(&mut self) -> &mut T
[src]Mutably borrows from an owned value. Read more
impl<T> Same<T> for T
impl<T> Same<T> for T
type Output = T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
[src]type Owned = T
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn to_owned(&self) -> T
[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)
[src]
pub fn clone_into(&self, target: &mut T)
[src]🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,