Icon Migrators Table

Structure
CREATE TABLE "Migrators"
(
"Name" VARCHAR(40) COLLATE "ANSI_CI",
"Description" CLOB COLLATE "ANSI",
"ModuleName" VARCHAR(255) COLLATE "ANSI_CI",
"CreateSQL" CLOB COLLATE "ANSI_CI",
"DropSQL" CLOB COLLATE "ANSI_CI"
)

CREATE INDEX "Name" ON "Migrators"
("Name")

Description
This table contains the defined migrators in an ElevateDB configuration. Migrators are used by ElevateDB to migrate a database from an external database to ElevateDB. You can find out more about migrating databases in the Migrating Databases topic.

Related DDL Statements
StatementDescription
CREATE MIGRATORCreates a new migrator
ALTER MIGRATORAlters an existing migrator
DROP MIGRATORDrops an existing migrator
RENAME MIGRATORRenames an existing migrator
Image