ADSQLAlterTableInstruction
public struct ADSQLAlterTableInstruction: ADSQLInstruction
Holds the information for a SQL ALTER TABLE instruction.
-
The name of the table being modified.
Declaration
Swift
public var name: String = ""
-
If renaming the table, this will be the table’s new name.
Declaration
Swift
public var renameTo: String = ""
-
The definition of a columns being added.
Declaration
Swift
public var column: ADSQLColumnDefinition?