Struct ColumnDef
pub struct ColumnDef { /* private fields */ }
Expand description
Specification of a table column
Implementations§
§impl ColumnDef
impl ColumnDef
pub fn new_with_type<T>(name: T, types: ColumnType) -> ColumnDefwhere
T: IntoIden,
pub fn new_with_type<T>(name: T, types: ColumnType) -> ColumnDefwhere
T: IntoIden,
Construct a table column with column type
pub fn default<T>(&mut self, value: T) -> &mut ColumnDefwhere
T: Into<SimpleExpr>,
pub fn default<T>(&mut self, value: T) -> &mut ColumnDefwhere
T: Into<SimpleExpr>,
Set default expression of a column
use sea_query::{tests_cfg::*, *};
let table = Table::create()
.table(Char::Table)
.col(ColumnDef::new(Char::FontId).integer().default(12i32))
.col(
ColumnDef::new(Char::CreatedAt)
.timestamp()
.default(Expr::current_timestamp())
.not_null(),
)
.to_owned();
assert_eq!(
table.to_string(MysqlQueryBuilder),
[
"CREATE TABLE `character` (",
"`font_id` int DEFAULT 12,",
"`created_at` timestamp DEFAULT CURRENT_TIMESTAMP NOT NULL",
")",
]
.join(" ")
);
assert_eq!(
table.to_string(PostgresQueryBuilder),
[
r#"CREATE TABLE "character" ("#,
r#""font_id" integer DEFAULT 12,"#,
r#""created_at" timestamp DEFAULT CURRENT_TIMESTAMP NOT NULL"#,
r#")"#,
]
.join(" ")
);
pub fn auto_increment(&mut self) -> &mut ColumnDef
pub fn auto_increment(&mut self) -> &mut ColumnDef
Set column auto increment
pub fn unique_key(&mut self) -> &mut ColumnDef
pub fn unique_key(&mut self) -> &mut ColumnDef
Set column unique constraint
pub fn primary_key(&mut self) -> &mut ColumnDef
pub fn primary_key(&mut self) -> &mut ColumnDef
Set column as primary key
pub fn string_len(&mut self, length: u32) -> &mut ColumnDef
pub fn string_len(&mut self, length: u32) -> &mut ColumnDef
Set column type as string with custom length
pub fn tiny_integer(&mut self) -> &mut ColumnDef
pub fn tiny_integer(&mut self) -> &mut ColumnDef
Set column type as tiny_integer
pub fn small_integer(&mut self) -> &mut ColumnDef
pub fn small_integer(&mut self) -> &mut ColumnDef
Set column type as small_integer
pub fn big_integer(&mut self) -> &mut ColumnDef
pub fn big_integer(&mut self) -> &mut ColumnDef
Set column type as big_integer
pub fn tiny_unsigned(&mut self) -> &mut ColumnDef
pub fn tiny_unsigned(&mut self) -> &mut ColumnDef
Set column type as tiny_unsigned
pub fn small_unsigned(&mut self) -> &mut ColumnDef
pub fn small_unsigned(&mut self) -> &mut ColumnDef
Set column type as small_unsigned
pub fn big_unsigned(&mut self) -> &mut ColumnDef
pub fn big_unsigned(&mut self) -> &mut ColumnDef
Set column type as big_unsigned
pub fn decimal_len(&mut self, precision: u32, scale: u32) -> &mut ColumnDef
pub fn decimal_len(&mut self, precision: u32, scale: u32) -> &mut ColumnDef
Set column type as decimal with custom precision and scale
pub fn interval(
&mut self,
fields: Option<PgInterval>,
precision: Option<u32>,
) -> &mut ColumnDef
pub fn interval( &mut self, fields: Option<PgInterval>, precision: Option<u32>, ) -> &mut ColumnDef
Set column type as interval type with optional fields and precision. Postgres only
use sea_query::{tests_cfg::*, *};
assert_eq!(
Table::create()
.table(Glyph::Table)
.col(
ColumnDef::new(Alias::new("I1"))
.interval(None, None)
.not_null()
)
.col(
ColumnDef::new(Alias::new("I2"))
.interval(Some(PgInterval::YearToMonth), None)
.not_null()
)
.col(
ColumnDef::new(Alias::new("I3"))
.interval(None, Some(42))
.not_null()
)
.col(
ColumnDef::new(Alias::new("I4"))
.interval(Some(PgInterval::Hour), Some(43))
.not_null()
)
.to_string(PostgresQueryBuilder),
[
r#"CREATE TABLE "glyph" ("#,
r#""I1" interval NOT NULL,"#,
r#""I2" interval YEAR TO MONTH NOT NULL,"#,
r#""I3" interval(42) NOT NULL,"#,
r#""I4" interval HOUR(43) NOT NULL"#,
r#")"#,
]
.join(" ")
);
pub fn timestamp_with_time_zone(&mut self) -> &mut ColumnDef
pub fn timestamp_with_time_zone(&mut self) -> &mut ColumnDef
Set column type as timestamp with time zone. Postgres only
pub fn binary_len(&mut self, length: u32) -> &mut ColumnDef
pub fn binary_len(&mut self, length: u32) -> &mut ColumnDef
Set column type as binary with custom length
pub fn var_binary(&mut self, length: u32) -> &mut ColumnDef
pub fn var_binary(&mut self, length: u32) -> &mut ColumnDef
Set column type as binary with variable length
pub fn bit(&mut self, length: Option<u32>) -> &mut ColumnDef
pub fn bit(&mut self, length: Option<u32>) -> &mut ColumnDef
Set column type as bit with variable length
pub fn varbit(&mut self, length: u32) -> &mut ColumnDef
pub fn varbit(&mut self, length: u32) -> &mut ColumnDef
Set column type as varbit with variable length
pub fn money_len(&mut self, precision: u32, scale: u32) -> &mut ColumnDef
pub fn money_len(&mut self, precision: u32, scale: u32) -> &mut ColumnDef
Set column type as money with custom precision and scale
pub fn json_binary(&mut self) -> &mut ColumnDef
pub fn json_binary(&mut self) -> &mut ColumnDef
Set column type as json binary.
pub fn custom<T>(&mut self, name: T) -> &mut ColumnDefwhere
T: IntoIden,
pub fn custom<T>(&mut self, name: T) -> &mut ColumnDefwhere
T: IntoIden,
Use a custom type on this column.
pub fn enumeration<N, S, V>(&mut self, name: N, variants: V) -> &mut ColumnDef
pub fn enumeration<N, S, V>(&mut self, name: N, variants: V) -> &mut ColumnDef
Set column type as enum.
pub fn array(&mut self, elem_type: ColumnType) -> &mut ColumnDef
pub fn array(&mut self, elem_type: ColumnType) -> &mut ColumnDef
Set column type as an array with a specified element type. This is only supported on Postgres.
pub fn cidr(&mut self) -> &mut ColumnDef
pub fn cidr(&mut self) -> &mut ColumnDef
Set columnt type as cidr. This is only supported on Postgres.
pub fn inet(&mut self) -> &mut ColumnDef
pub fn inet(&mut self) -> &mut ColumnDef
Set columnt type as inet. This is only supported on Postgres.
pub fn mac_address(&mut self) -> &mut ColumnDef
pub fn mac_address(&mut self) -> &mut ColumnDef
Set columnt type as macaddr. This is only supported on Postgres.
pub fn ltree(&mut self) -> &mut ColumnDef
pub fn ltree(&mut self) -> &mut ColumnDef
Set column type as ltree
This is only supported on Postgres.
use sea_query::{tests_cfg::*, *};
assert_eq!(
Table::create()
.table(Glyph::Table)
.col(
ColumnDef::new(Glyph::Id)
.integer()
.not_null()
.auto_increment()
.primary_key()
)
.col(ColumnDef::new(Glyph::Tokens).ltree())
.to_string(PostgresQueryBuilder),
[
r#"CREATE TABLE "glyph" ("#,
r#""id" serial NOT NULL PRIMARY KEY,"#,
r#""tokens" ltree"#,
r#")"#,
]
.join(" ")
);
pub fn check<T>(&mut self, value: T) -> &mut ColumnDefwhere
T: Into<SimpleExpr>,
pub fn check<T>(&mut self, value: T) -> &mut ColumnDefwhere
T: Into<SimpleExpr>,
Set constraints as SimpleExpr
use sea_query::{tests_cfg::*, *};
assert_eq!(
Table::create()
.table(Glyph::Table)
.col(
ColumnDef::new(Glyph::Id)
.integer()
.not_null()
.check(Expr::col(Glyph::Id).gt(10))
)
.to_string(MysqlQueryBuilder),
r#"CREATE TABLE `glyph` ( `id` int NOT NULL CHECK (`id` > 10) )"#,
);
pub fn generated<T>(&mut self, expr: T, stored: bool) -> &mut ColumnDefwhere
T: Into<SimpleExpr>,
pub fn generated<T>(&mut self, expr: T, stored: bool) -> &mut ColumnDefwhere
T: Into<SimpleExpr>,
Sets the column as generated with SimpleExpr
pub fn extra<T>(&mut self, string: T) -> &mut ColumnDef
pub fn extra<T>(&mut self, string: T) -> &mut ColumnDef
Some extra options in custom string
use sea_query::{tests_cfg::*, *};
let table = Table::create()
.table(Char::Table)
.col(
ColumnDef::new(Char::Id)
.uuid()
.extra("DEFAULT gen_random_uuid()")
.primary_key()
.not_null(),
)
.col(
ColumnDef::new(Char::CreatedAt)
.timestamp_with_time_zone()
.extra("DEFAULT NOW()")
.not_null(),
)
.to_owned();
assert_eq!(
table.to_string(PostgresQueryBuilder),
[
r#"CREATE TABLE "character" ("#,
r#""id" uuid DEFAULT gen_random_uuid() PRIMARY KEY NOT NULL,"#,
r#""created_at" timestamp with time zone DEFAULT NOW() NOT NULL"#,
r#")"#,
]
.join(" ")
);
pub fn using<T>(&mut self, value: T) -> &mut ColumnDefwhere
T: Into<SimpleExpr>,
pub fn using<T>(&mut self, value: T) -> &mut ColumnDefwhere
T: Into<SimpleExpr>,
Some extra options in custom string
use sea_query::{tests_cfg::*, *};
let table = Table::alter()
.table(Char::Table)
.modify_column(
ColumnDef::new(Char::Id)
.integer()
.using(Expr::col(Char::Id).cast_as(Alias::new("integer"))),
)
.to_owned();
assert_eq!(
table.to_string(PostgresQueryBuilder),
[
r#"ALTER TABLE "character""#,
r#"ALTER COLUMN "id" TYPE integer USING CAST("id" AS integer)"#,
]
.join(" ")
);
pub fn get_column_name(&self) -> String
pub fn get_column_type(&self) -> Option<&ColumnType>
pub fn get_column_spec(&self) -> &Vec<ColumnSpec>
pub fn take(&mut self) -> ColumnDef
Trait Implementations§
§impl IntoColumnDef for &mut ColumnDef
impl IntoColumnDef for &mut ColumnDef
fn into_column_def(self) -> ColumnDef
§impl IntoColumnDef for ColumnDef
impl IntoColumnDef for ColumnDef
fn into_column_def(self) -> ColumnDef
Auto Trait Implementations§
impl Freeze for ColumnDef
impl !RefUnwindSafe for ColumnDef
impl Send for ColumnDef
impl Sync for ColumnDef
impl Unpin for ColumnDef
impl !UnwindSafe for ColumnDef
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
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> ⓘ
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> ⓘ
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