SSC-FDM-RS0003
Foreign Key translation will be supported in the future.
Description
Code Example
Input Code:
CREATE TABLE TABLE1 (
id INTEGER,
PRIMARY KEY (id)
);
CREATE TABLE TABLE2 (
id INTEGER,
id_table1 INTEGER,
FOREIGN KEY (id_table1) REFERENCES TABLE1 (col1)
);Output Code:
Recommendations
Last updated
