Crate migration

Source

Modules§

async_trait
githubcrates-iodocs-rs
cli
sea_orm

Macros§

all
Macro to easily create an Condition::all.
any
Macro to easily create an Condition::any.

Structs§

AddColumnOption
table alter add column options
Alias
Helper for create name alias
Asterisk
Asterisk (“*”)
CaseStatement
ColumnDef
Specification of a table column
CommonTableExpression
A table definition inside a WITH clause (WithClause).
Condition
Represents the value of an Condition::any or Condition::all: a set of disjunctive or conjunctive conditions.
ConditionHolder
Cycle
For recursive WithQuery WithClauses the CYCLE sql clause can be specified to avoid creating an infinite traversals that loops on graph cycles indefinitely. You specify an expression that identifies a node in the graph and that will be used to determine during the iteration of the execution of the query when appending of new values whether the new values are distinct new nodes or are already visited and therefore they should be added again into the result.
DeleteStatement
Delete existing rows from the table
Expr
Helper to build a SimpleExpr.
ForeignKey
Shorthand for constructing any foreign key statement
ForeignKeyCreateStatement
Create a foreign key constraint for an existing table. Unsupported by Sqlite
ForeignKeyDropStatement
Drop a foreign key constraint for an existing table
FrameClause
Frame clause
Func
Function call helper.
FuncArgMod
FunctionCall
Function call.
Index
Shorthand for constructing any index statement
IndexColumn
IndexCreateStatement
Create an index for an existing table
IndexDropStatement
Drop an index for an existing table
InsertStatement
Insert any new rows into an existing table
JoinExpr
Join expression used in select statement
LikeExpr
Like Expression
LockClause
Migrator
MigratorChainLogs
The logs are kept separate from the rest of the database to allow for easier export of the logs themselves and also to not block any other database operations made by the node at runtime.
MigratorIndex
SQLite does not allow writing lock tables only, and the write lock will apply to the entire database file. It is therefore beneficial to separate the exclusive concurrently accessing components into separate database files to benefit from multiple write locks over different parts of the database.
MigratorPeers
MigratorTickets
MysqlQueryBuilder
Mysql query builder.
NullAlias
Null Alias
OnConflict
OrderExpr
Order expression
PgFunc
Function call helper.
PostgresQueryBuilder
Postgres query builder.
Query
Shorthand for constructing any table query
Quote
RcOrArc
A thread-safe reference-counting pointer. ‘Arc’ stands for ‘Atomically Reference Counted’.
Returning
Shorthand for constructing ReturningClause
SchemaManager
Helper struct for writing migration scripts in migration file
SeaRc
Search
For recursive WithQuery WithClauses the traversing order can be specified in some databases that support this functionality.
SelectExpr
Select expression used in select statement
SelectStatement
Select rows from an existing table
SqlWriterValues
SqliteQueryBuilder
Sqlite query builder.
Table
Helper for constructing any table statement
TableAlterStatement
Alter a table
TableCreateStatement
Create a table
TableDropStatement
Drop a table
TableForeignKey
Specification of a foreign key
TableIndex
Specification of a table index
TableRenameStatement
Rename a table
TableTruncateStatement
Drop a table
Tokenizer
UpdateStatement
Update existing rows in the table
ValueTypeErr
Values
WindowStatement
Window expression
WithClause
A WITH clause can contain one or multiple common table expressions (CommonTableExpression).
WithQuery
A WITH query. A simple SQL query that has a WITH clause (WithClause).

Enums§

ArrayType
Value types variant for Postgres array
BackendType
BinOper
Binary operator
ColumnRef
Column references
ColumnSpec
All column specification keywords
ColumnType
All column types
ConditionExpression
Represents anything that can be passed to an Condition::any or Condition::all’s Condition::add method.
ConditionHolderContents
ConditionType
DbErr
An error from unsuccessful database operations
ForeignKeyAction
Foreign key on update & on delete actions
ForeignKeyStatement
All available types of foreign key statement
Frame
frame_start or frame_end clause
FrameType
Frame type
Function
Functions
IndexOrder
IndexStatement
All available types of index statement
IndexType
Specification of a table index
JoinOn
Join on types
JoinType
Join types
Keyword
SQL Keywords
LockBehavior
List of lock behavior can be used in select statement
LockType
List of lock types that can be used in select statement
LogicalChainOper
Logical chain operator
Mode
NullOrdering
Nulls order
OnConflictAction
Represents ON CONFLICT (upsert) actions
OnConflictTarget
Represents ON CONFLICT (upsert) targets
OnConflictUpdate
Represents strategies to update column in ON CONFLICT (upsert) actions
Oper
Order
Ordering options
PgDateTruncUnit
PgFunction
Functions
PgInterval
QueryStatement
All available types of table query
ReturningClause
RETURNING clause.
SchemaManagerConnection
SchemaStatement
SearchOrder
For recursive WithQuery WithClauses the traversing order can be specified in some databases that support this functionality.
SelectDistinct
List of distinct keywords that can be used in select statement
SimpleExpr
Represents a Simple Expression in SQL.
StringLen
Length for var-char/binary; default to 255
SubQueryOper
SubQuery operators
SubQueryStatement
TableAlterOption
All available table alter options
TableDropOpt
All available table drop options
TableOpt
All available table options
TablePartition
All available table partition options
TableRef
Table references
TableStatement
All available types of table statement
Token
UnOper
Unary operator
UnionType
List of union types that can be used in union clause
Value
Value variants
ValueTuple
WindowSelectType
Window type in SelectExpr

Traits§

ConditionalStatement
ConnectionTrait
The generic API for a database connection that can perform query or execute statements. It abstracts database connection and transaction
EscapeBuilder
ExprTrait
“Operator” methods for building complex expressions.
ForeignKeyBuilder
FromValueTuple
GenericBuilder
Iden
Identifier
IdenList
IdenStatic
Identifier
IndexBuilder
IntoColumnDef
IntoColumnRef
IntoCondition
IntoIden
IntoIndexColumn
IntoLikeExpr
IntoSchemaManagerConnection
IntoTableRef
IntoValueTuple
MigrationName
MigrationTrait
The migration definition
MigratorTrait
Performing migrations on a database
Nullable
OperLeftAssocDecider
OrderedStatement
OverStatement
PrecedenceDecider
QueryBuilder
QueryStatementBuilder
QueryStatementWriter
QuotedBuilder
SchemaBuilder
SchemaStatementBuilder
SqlWriter
TableBuilder
TableRefBuilder
ValueType
Write
A trait for writing or formatting into Unicode-accepting buffers or streams.

Functions§

inject_parameters
sea_value_to_json_value
Convert value to json value

Type Aliases§

Cond
DynIden
MySqlQueryBuilder

Attribute Macros§

enum_def

Derive Macros§

DeriveIden
The DeriveIden derive macro will implement sea_orm::sea_query::Iden for simplify Iden implementation.
DeriveMigrationName
The DeriveMigrationName derive macro will implement sea_orm_migration::MigrationName for a migration.
Iden
IdenStatic