Enum rorm_sql::create_column::CreateColumnImpl
source · pub enum CreateColumnImpl<'until_build, 'post_build> {
SQLite(CreateColumnSQLiteData<'until_build, 'post_build>),
MySQL(CreateColumnMySQLData<'until_build, 'post_build>),
Postgres(CreateColumnPostgresData<'until_build, 'post_build>),
}
Expand description
Representation of the different implementations of the CreateColumn trait.
Should only be constructed via crate::DBImpl::create_column.
Variants§
SQLite(CreateColumnSQLiteData<'until_build, 'post_build>)
SQLite representation of the create column operation.
MySQL(CreateColumnMySQLData<'until_build, 'post_build>)
MySQL representation of the create column operation.
Postgres(CreateColumnPostgresData<'until_build, 'post_build>)
Postgres representation of the create column operation.