feat: extension, triggers, functions, comments, parameters management in sql-tools (#17269)

feat: sql-tools extension, triggers, functions, comments, parameters
This commit is contained in:
Jason Rasmussen 2025-04-07 15:12:12 -04:00 committed by GitHub
parent 51c2c60231
commit e7a5b96ed0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
170 changed files with 5205 additions and 2295 deletions

View file

@ -1,39 +0,0 @@
import { Column, DatabaseSchema, Table } from 'src/sql-tools';
enum Test {
Foo = 'foo',
Bar = 'bar',
}
@Table()
export class Table1 {
@Column({ enum: Test })
column1!: string;
}
export const description = 'should use a default enum naming convention';
export const schema: DatabaseSchema = {
name: 'public',
tables: [
{
name: 'table1',
columns: [
{
name: 'column1',
tableName: 'table1',
type: 'enum',
enumName: 'table1_column1_enum',
enumValues: ['foo', 'bar'],
nullable: false,
isArray: false,
primary: false,
synchronize: true,
},
],
indexes: [],
constraints: [],
synchronize: true,
},
],
warnings: [],
};