pub struct ForeignKeyCreateStatement { /* private fields */ }
Expand description

Create a foreign key constraint for an existing table. Unsupported by Sqlite

§Examples

use sea_query::{tests_cfg::*, *};

let foreign_key = ForeignKey::create()
    .name("FK_character_font")
    .from(Char::Table, Char::FontId)
    .to(Font::Table, Font::Id)
    .on_delete(ForeignKeyAction::Cascade)
    .on_update(ForeignKeyAction::Cascade)
    .to_owned();

assert_eq!(
    foreign_key.to_string(MysqlQueryBuilder),
    [
        r#"ALTER TABLE `character`"#,
        r#"ADD CONSTRAINT `FK_character_font`"#,
        r#"FOREIGN KEY (`font_id`) REFERENCES `font` (`id`)"#,
        r#"ON DELETE CASCADE ON UPDATE CASCADE"#,
    ]
    .join(" ")
);
assert_eq!(
    foreign_key.to_string(PostgresQueryBuilder),
    [
        r#"ALTER TABLE "character" ADD CONSTRAINT "FK_character_font""#,
        r#"FOREIGN KEY ("font_id") REFERENCES "font" ("id")"#,
        r#"ON DELETE CASCADE ON UPDATE CASCADE"#,
    ]
    .join(" ")
);

Composite key

use sea_query::{tests_cfg::*, *};

let foreign_key = ForeignKey::create()
    .name("FK_character_glyph")
    .from(Char::Table, (Char::FontId, Char::Id))
    .to(Glyph::Table, (Char::FontId, Glyph::Id))
    .on_delete(ForeignKeyAction::Cascade)
    .on_update(ForeignKeyAction::Cascade)
    .to_owned();

assert_eq!(
    foreign_key.to_string(MysqlQueryBuilder),
    [
        r#"ALTER TABLE `character`"#,
        r#"ADD CONSTRAINT `FK_character_glyph`"#,
        r#"FOREIGN KEY (`font_id`, `id`) REFERENCES `glyph` (`font_id`, `id`)"#,
        r#"ON DELETE CASCADE ON UPDATE CASCADE"#,
    ]
    .join(" ")
);
assert_eq!(
    foreign_key.to_string(PostgresQueryBuilder),
    [
        r#"ALTER TABLE "character" ADD CONSTRAINT "FK_character_glyph""#,
        r#"FOREIGN KEY ("font_id", "id") REFERENCES "glyph" ("font_id", "id")"#,
        r#"ON DELETE CASCADE ON UPDATE CASCADE"#,
    ]
    .join(" ")
);

Implementations§

source§

impl ForeignKeyCreateStatement

source

pub fn new() -> ForeignKeyCreateStatement

Construct a new ForeignKeyCreateStatement

source

pub fn name<T>(&mut self, name: T) -> &mut ForeignKeyCreateStatement
where T: Into<String>,

Set foreign key name

source

pub fn from<T, C>( &mut self, table: T, columns: C ) -> &mut ForeignKeyCreateStatement
where T: IntoTableRef, C: IdenList,

Set key table and columns

source

pub fn to<T, C>( &mut self, table: T, columns: C ) -> &mut ForeignKeyCreateStatement
where T: IntoTableRef, C: IdenList,

Set referencing table and columns

source

pub fn from_tbl<T>(&mut self, table: T) -> &mut ForeignKeyCreateStatement
where T: IntoTableRef,

Set key table

source

pub fn to_tbl<R>(&mut self, ref_table: R) -> &mut ForeignKeyCreateStatement
where R: IntoTableRef,

Set referencing table

source

pub fn from_col<T>(&mut self, column: T) -> &mut ForeignKeyCreateStatement
where T: IntoIden,

Add key column

source

pub fn to_col<R>(&mut self, ref_column: R) -> &mut ForeignKeyCreateStatement
where R: IntoIden,

Add referencing column

source

pub fn on_delete( &mut self, action: ForeignKeyAction ) -> &mut ForeignKeyCreateStatement

Set on delete action

source

pub fn on_update( &mut self, action: ForeignKeyAction ) -> &mut ForeignKeyCreateStatement

Set on update action

source

pub fn get_foreign_key(&self) -> &TableForeignKey

source

pub fn take(&mut self) -> ForeignKeyCreateStatement

source§

impl ForeignKeyCreateStatement

source

pub fn build<T>(&self, schema_builder: T) -> String
where T: SchemaBuilder,

source

pub fn build_any(&self, schema_builder: &dyn SchemaBuilder) -> String

source

pub fn to_string<T>(&self, schema_builder: T) -> String
where T: SchemaBuilder,

Trait Implementations§

source§

impl Clone for ForeignKeyCreateStatement

source§

fn clone(&self) -> ForeignKeyCreateStatement

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for ForeignKeyCreateStatement

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Default for ForeignKeyCreateStatement

source§

fn default() -> ForeignKeyCreateStatement

Returns the “default value” for a type. Read more
source§

impl From<RelationDef> for ForeignKeyCreateStatement

source§

fn from(relation: RelationDef) -> ForeignKeyCreateStatement

Converts to this type from the input type.
source§

impl SchemaStatementBuilder for ForeignKeyCreateStatement

source§

fn build<T>(&self, schema_builder: T) -> String
where T: SchemaBuilder,

Build corresponding SQL statement for certain database backend and return SQL string
source§

fn build_any(&self, schema_builder: &dyn SchemaBuilder) -> String

Build corresponding SQL statement for certain database backend and return SQL string
source§

fn to_string<T>(&self, schema_builder: T) -> String
where T: SchemaBuilder,

Build corresponding SQL statement for certain database backend and return SQL string
source§

impl StatementBuilder for ForeignKeyCreateStatement

source§

fn build(&self, db_backend: &DatabaseBackend) -> Statement

Method to call in order to build a Statement

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more