Guest User

Untitled

a guest
Aug 10th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. ```sql
  2. author (
  3. id SERIAL PRIMARY KEY
  4. name TEXT
  5. age INT
  6. is_active BOOL
  7. )
  8. article (
  9. id SERIAL PRIMARY KEY
  10. title TEXT
  11. content TEXT
  12. is_published BOOL
  13. author_id INT FOREIGN KEY REFERENCES author(id)
  14. )
  15. ```
Add Comment
Please, Sign In to add comment