Files
relspecgo/tests/assets/drawdb/simple.json
Hein 5d60bc3b2c
Some checks are pending
CI / Test (1.23) (push) Waiting to run
CI / Test (1.24) (push) Waiting to run
CI / Test (1.25) (push) Waiting to run
CI / Lint (push) Waiting to run
CI / Build (push) Waiting to run
Bugs Fixed
1. pkg/models/models.go:184 - Fixed typo in ForeignKeyConstraint constant from "foreign_Key" to "foreign_key"
  2. pkg/readers/drawdb/reader.go:62-68 - Fixed ReadSchema() to properly detect schema name from tables instead of hardcoding "default"
  3. pkg/writers/dbml/writer.go:128 - Changed primary key attribute from "primary key" to DBML standard "pk"
  4. pkg/writers/dbml/writer.go:208-221 - Fixed foreign key reference format to use "table.column" syntax for single columns instead of "table.(column)"

  Test Results

  All reader and writer tests are now passing:

  Readers:
  - DBML: 74.4% coverage (2 tests skipped due to missing parser features for Ref statements)
  - DCTX: 77.6% coverage
  - DrawDB: 83.6% coverage
  - JSON: 82.1% coverage
  - YAML: 82.1% coverage

  Writers:
  - Bun: 68.5% coverage
  - DBML: 91.5% coverage
  - DCTX: 100.0% coverage
  - DrawDB: 83.8% coverage
  - GORM: 69.2% coverage
  - JSON: 82.4% coverage
  - YAML: 82.4% coverage
2025-12-16 21:43:45 +02:00

54 lines
1.0 KiB
JSON

{
"tables": [
{
"id": 0,
"name": "users",
"schema": "public",
"comment": "Users table",
"color": "#3b82f6",
"x": 100,
"y": 100,
"fields": [
{
"id": 0,
"name": "id",
"type": "bigint",
"primary": true,
"notNull": true,
"increment": true,
"comment": "Primary key"
},
{
"id": 1,
"name": "email",
"type": "varchar(255)",
"primary": false,
"unique": true,
"notNull": true,
"increment": false,
"comment": "User email"
},
{
"id": 2,
"name": "name",
"type": "varchar(100)",
"primary": false,
"unique": false,
"notNull": false,
"increment": false
}
],
"indexes": [
{
"id": 0,
"name": "idx_users_email",
"unique": true,
"fields": [1]
}
]
}
],
"relationships": [],
"notes": []
}