Last active
February 27, 2025 03:12
-
-
Save MH4GF/331dedf4cc4ac4ebc3016238638f4cf8 to your computer and use it in GitHub Desktop.
https://github.com/liam-hq/liam/issues/785 minimum reproduction
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"tables": { | |
"img_image": { | |
"name": "img_image", | |
"columns": { | |
"IMG_IMAGE_ID": { | |
"name": "IMG_IMAGE_ID", | |
"type": "INTEGER", | |
"nullable": false, | |
"default": null, | |
"isPrimaryKey": true | |
}, | |
"IMG_IMAGE_NAME": { | |
"name": "IMG_IMAGE_NAME", | |
"type": "VARCHAR", | |
"nullable": true, | |
"default": null, | |
"isPrimaryKey": false | |
} | |
} | |
}, | |
"img_image_save": { | |
"name": "img_image_save", | |
"columns": { | |
"IMG_IMAGE_SAVE_ID": { | |
"name": "IMG_IMAGE_SAVE_ID", | |
"type": "INTEGER", | |
"nullable": false, | |
"default": null, | |
"isPrimaryKey": true | |
}, | |
"IMG_IMAGE_ID": { | |
"name": "IMG_IMAGE_ID", | |
"type": "INTEGER", | |
"nullable": false, | |
"default": null, | |
"isPrimaryKey": false | |
} | |
} | |
} | |
}, | |
"relationships": { | |
"relationshipNo3": { | |
"name": "relationshipNo3", | |
"primaryTableName": "img_image", | |
"primaryColumnName": "IMG_IMAGE_ID", | |
"foreignTableName": "img_image_save", | |
"foreignColumnName": "IMG_IMAGE_ID", | |
"cardinality": "ONE_TO_MANY", | |
"updateConstraint": "NO_ACTION", | |
"deleteConstraint": "NO_ACTION" | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment