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
    
  
  
    
  | CREATE TABLE linkable ( | |
| id serial PRIMARY KEY | |
| ); | |
| CREATE TABLE obja ( | |
| id integer not null, | |
| name varchar(50) NOT NULL, | |
| FOREIGN KEY(id) REFERENCES linkable(id) | |
| ); | 
OlderNewer