mirror of
https://github.com/dbgate/dbgate
synced 2024-11-07 20:26:23 +00:00
create table dumper
This commit is contained in:
parent
d75397d793
commit
2cb3a6b446
@ -91,4 +91,63 @@ describe('Table create', () => {
|
|||||||
});
|
});
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
|
|
||||||
|
test.each(engines.map(engine => [engine.label, engine]))(
|
||||||
|
'Table with foreign key - %s',
|
||||||
|
testWrapper(async (conn, driver, engine) => {
|
||||||
|
await testTableCreate(conn, driver, {
|
||||||
|
columns: [
|
||||||
|
{
|
||||||
|
columnName: 'col1',
|
||||||
|
dataType: 'int',
|
||||||
|
notNull: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
columnName: 'col2',
|
||||||
|
dataType: 'int',
|
||||||
|
notNull: true,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
primaryKey: {
|
||||||
|
columns: [{ columnName: 'col1' }],
|
||||||
|
},
|
||||||
|
foreignKeys: [
|
||||||
|
{
|
||||||
|
pureName: 'tested',
|
||||||
|
refTableName: 't0',
|
||||||
|
columns: [{ columnName: 'col2', refColumnName: 'id' }],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
});
|
||||||
|
})
|
||||||
|
);
|
||||||
|
|
||||||
|
test.each(engines.map(engine => [engine.label, engine]))(
|
||||||
|
'Table with unique - %s',
|
||||||
|
testWrapper(async (conn, driver, engine) => {
|
||||||
|
await testTableCreate(conn, driver, {
|
||||||
|
columns: [
|
||||||
|
{
|
||||||
|
columnName: 'col1',
|
||||||
|
dataType: 'int',
|
||||||
|
notNull: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
columnName: 'col2',
|
||||||
|
dataType: 'int',
|
||||||
|
notNull: true,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
primaryKey: {
|
||||||
|
columns: [{ columnName: 'col1' }],
|
||||||
|
},
|
||||||
|
uniques: [
|
||||||
|
{
|
||||||
|
pureName: 'tested',
|
||||||
|
columns: [{ columnName: 'col2' }],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
});
|
||||||
|
})
|
||||||
|
);
|
||||||
});
|
});
|
||||||
|
@ -229,29 +229,25 @@ export class SqlDumper implements AlterProcessor {
|
|||||||
table.primaryKey.columns.map(x => x.columnName)
|
table.primaryKey.columns.map(x => x.columnName)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
if (table.foreignKeys) {
|
|
||||||
table.foreignKeys.forEach(fk => {
|
(table.foreignKeys || []).forEach(fk => {
|
||||||
this.put(',&n');
|
this.put(',&n');
|
||||||
this.createForeignKeyFore(fk);
|
this.createForeignKeyFore(fk);
|
||||||
});
|
});
|
||||||
}
|
(table.uniques || []).forEach(uq => {
|
||||||
// foreach (var cnt in table.Uniques)
|
this.put(',&n');
|
||||||
// {
|
this.createUniqueCore(uq);
|
||||||
// if (!first) this.put(", &n");
|
});
|
||||||
// first = false;
|
(table.checks || []).forEach(chk => {
|
||||||
// CreateUniqueCore(cnt);
|
this.put(',&n');
|
||||||
// }
|
this.createCheckCore(chk);
|
||||||
// foreach (var cnt in table.Checks)
|
});
|
||||||
// {
|
|
||||||
// if (!first) this.put(", &n");
|
|
||||||
// first = false;
|
|
||||||
// CreateCheckCore(cnt);
|
|
||||||
// }
|
|
||||||
this.put('&<&n)');
|
this.put('&<&n)');
|
||||||
this.endCommand();
|
this.endCommand();
|
||||||
for (const ix of table.indexes) {
|
(table.indexes || []).forEach(ix => {
|
||||||
this.createIndex(ix);
|
this.createIndex(ix);
|
||||||
}
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
createForeignKeyFore(fk: ForeignKeyInfo) {
|
createForeignKeyFore(fk: ForeignKeyInfo) {
|
||||||
|
Loading…
Reference in New Issue
Block a user