Struct ForeignKeyDropStatement
pub struct ForeignKeyDropStatement { /* private fields */ }
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
impl ForeignKeyDropStatement
pub fn new() -> ForeignKeyDropStatement
pub fn new() -> ForeignKeyDropStatement
Construct a new ForeignKeyDropStatement
pub fn name<T>(&mut self, name: T) -> &mut ForeignKeyDropStatement
pub fn name<T>(&mut self, name: T) -> &mut ForeignKeyDropStatement
Set foreign key name
pub fn table<T>(&mut self, table: T) -> &mut ForeignKeyDropStatementwhere
T: IntoTableRef,
pub fn table<T>(&mut self, table: T) -> &mut ForeignKeyDropStatementwhere
T: IntoTableRef,
Set key table and referencing table
§impl ForeignKeyDropStatement
impl ForeignKeyDropStatement
pub fn build<T>(&self, schema_builder: T) -> Stringwhere
T: SchemaBuilder,
pub fn build<T>(&self, schema_builder: T) -> Stringwhere
T: SchemaBuilder,
pub fn build_any(&self, schema_builder: &dyn SchemaBuilder) -> String
pub fn build_any(&self, schema_builder: &dyn SchemaBuilder) -> String
pub fn to_string<T>(&self, schema_builder: T) -> Stringwhere
T: SchemaBuilder,
pub fn to_string<T>(&self, schema_builder: T) -> Stringwhere
T: SchemaBuilder,
Trait Implementations§
§impl Clone for ForeignKeyDropStatement
impl Clone for ForeignKeyDropStatement
§fn clone(&self) -> ForeignKeyDropStatement
fn clone(&self) -> ForeignKeyDropStatement
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl Debug for ForeignKeyDropStatement
impl Debug for ForeignKeyDropStatement
§impl Default for ForeignKeyDropStatement
impl Default for ForeignKeyDropStatement
§fn default() -> ForeignKeyDropStatement
fn default() -> ForeignKeyDropStatement
Returns the “default value” for a type. Read more
§impl SchemaStatementBuilder for ForeignKeyDropStatement
impl SchemaStatementBuilder for ForeignKeyDropStatement
§fn build<T>(&self, schema_builder: T) -> Stringwhere
T: SchemaBuilder,
fn build<T>(&self, schema_builder: T) -> Stringwhere
T: SchemaBuilder,
Build corresponding SQL statement for certain database backend and return SQL string
§fn build_any(&self, schema_builder: &dyn SchemaBuilder) -> String
fn build_any(&self, schema_builder: &dyn SchemaBuilder) -> String
Build corresponding SQL statement for certain database backend and return SQL string
§fn to_string<T>(&self, schema_builder: T) -> Stringwhere
T: SchemaBuilder,
fn to_string<T>(&self, schema_builder: T) -> Stringwhere
T: SchemaBuilder,
Build corresponding SQL statement for certain database backend and return SQL string
§impl StatementBuilder for ForeignKeyDropStatement
impl StatementBuilder for ForeignKeyDropStatement
§fn build(&self, db_backend: &DatabaseBackend) -> Statement
fn build(&self, db_backend: &DatabaseBackend) -> Statement
Method to call in order to build a Statement
Auto Trait Implementations§
impl Freeze for ForeignKeyDropStatement
impl !RefUnwindSafe for ForeignKeyDropStatement
impl Send for ForeignKeyDropStatement
impl Sync for ForeignKeyDropStatement
impl Unpin for ForeignKeyDropStatement
impl !UnwindSafe for ForeignKeyDropStatement
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more