Enum rorm_sql::alter_table::AlterTableImpl
source · pub enum AlterTableImpl<'until_build, 'post_build> {
SQLite(AlterTableData<'until_build, 'post_build>),
MySQL(AlterTableData<'until_build, 'post_build>),
Postgres(AlterTableData<'until_build, 'post_build>),
}
Expand description
Implementation of the AlterTable trait for the different database dialects.
Should only be constructed via crate::DBImpl::alter_table.
Variants§
SQLite(AlterTableData<'until_build, 'post_build>)
SQLite representation of the ALTER TABLE operation.
MySQL(AlterTableData<'until_build, 'post_build>)
MySQL representation of the ALTER TABLE operation.
Postgres(AlterTableData<'until_build, 'post_build>)
Postgres representation of the ALTER TABLE operation.