mirror of
https://github.com/knex/knex.git
synced 2025-10-10 15:39:14 +00:00
115 lines
1.3 KiB
JavaScript
115 lines
1.3 KiB
JavaScript
describe('SchemaGrammar', function () {
|
|
|
|
describe('toSql', function(){
|
|
|
|
});
|
|
|
|
describe('compileForeign', function(){
|
|
|
|
});
|
|
|
|
describe('getColumns', function(){
|
|
|
|
});
|
|
|
|
describe('addModifiers', function(){
|
|
|
|
});
|
|
|
|
describe('getType', function(){
|
|
|
|
});
|
|
|
|
describe('prefixArray', function(){
|
|
|
|
});
|
|
|
|
describe('wrapTable', function(){
|
|
|
|
});
|
|
|
|
describe('wrap', function(){
|
|
|
|
});
|
|
|
|
describe('getDefaultValue', function(){
|
|
|
|
});
|
|
|
|
describe('getCommandByName', function(){
|
|
|
|
});
|
|
|
|
describe('getCommandsByName', function(){
|
|
|
|
});
|
|
|
|
describe('compileAdditional', function(){
|
|
|
|
});
|
|
|
|
describe('compileCreateTable', function(){
|
|
|
|
});
|
|
|
|
describe('compileDropTable', function(){
|
|
|
|
});
|
|
|
|
describe('compileDropTableIfExists', function(){
|
|
|
|
});
|
|
|
|
describe('compileDropIndex', function(){
|
|
|
|
});
|
|
|
|
describe('typeBigInteger', function(){
|
|
|
|
});
|
|
|
|
describe('typeString', function(){
|
|
|
|
});
|
|
|
|
describe('typeText', function(){
|
|
|
|
});
|
|
|
|
describe('typeTinyInteger', function(){
|
|
|
|
});
|
|
|
|
describe('typeTime', function(){
|
|
|
|
});
|
|
|
|
describe('typeDate', function(){
|
|
|
|
});
|
|
|
|
describe('typeBinary', function(){
|
|
|
|
});
|
|
|
|
describe('typeJson', function(){
|
|
|
|
});
|
|
|
|
describe('typeUuid', function(){
|
|
|
|
});
|
|
|
|
describe('typeSpecificType', function(){
|
|
|
|
});
|
|
|
|
describe('modifyNullable', function(){
|
|
|
|
});
|
|
|
|
describe('modifyDefault', function(){
|
|
|
|
});
|
|
|
|
}); |