Column
Realiza a manipulação de colunas em base de dados.
if (!_db.checkExists().column("client", "description")) {
_db.column().rename(
"client", // Tabela
"description", // Nome Antigo
"name" // Novo Nome
);
}
changeType
changeType(table: string) : Column
Atributos
NOME | TIPO | DESCRIÇÃO |
---|---|---|
table | string |
Retorno
( Column )
drop
drop(table: string, column: string) : Column
Atributos
NOME | TIPO | DESCRIÇÃO |
---|---|---|
table | string | |
column | string |
Retorno
( Column )
getDefault
getDefault() : string
Retorno
( string )
getKey
getKey() : string
Retorno
( string )
getMaxLength
getMaxLength() : int
Retorno
( int )
getName
getName() : string
Retorno
( string )
getType
getType() : org.netuno.tritao.db.manager.Column$Type
Retorno
( org.netuno.tritao.db.manager.Column$Type )
isH2
isH2() : boolean
Retorno
( boolean )
isH2(builder: org.netuno.tritao.db.Builder) : boolean
Atributos
NOME | TIPO | DESCRIÇÃO |
---|---|---|
builder | org.netuno.tritao.db.Builder |
Retorno
( boolean )
isMSSQL
isMSSQL() : boolean
Retorno
( boolean )
isMSSQL(builder: org.netuno.tritao.db.Builder) : boolean
Atributos
NOME | TIPO | DESCRIÇÃO |
---|---|---|
builder | org.netuno.tritao.db.Builder |
Retorno
( boolean )
isMariaDB
isMariaDB() : boolean
Retorno
( boolean )
isMariaDB(builder: org.netuno.tritao.db.Builder) : boolean
Atributos
NOME | TIPO | DESCRIÇÃO |
---|---|---|
builder | org.netuno.tritao.db.Builder |
Retorno
( boolean )
isNotNull
isNotNull() : boolean
Retorno
( boolean )
isPostgreSQL
isPostgreSQL() : boolean
Retorno
( boolean )
isPostgreSQL(builder: org.netuno.tritao.db.Builder) : boolean
Atributos
NOME | TIPO | DESCRIÇÃO |
---|---|---|
builder | org.netuno.tritao.db.Builder |
Retorno
( boolean )
isPrimaryKey
isPrimaryKey() : boolean
Retorno
( boolean )