Guest User

Book

a guest
Feb 18th, 2020
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. table 50009 Book
  2. {
  3. DataClassification = ToBeClassified;
  4.  
  5. fields
  6. {
  7. field(1; Title; Text[50])
  8. {
  9. Caption = 'Title';
  10. DataClassification = ToBeClassified;
  11. }
  12. field(2; Author; Text[50])
  13. {
  14. Caption = 'Author';
  15. DataClassification = ToBeClassified;
  16. }
  17. }
  18. keys
  19. {
  20. key(PK; Title)
  21. {
  22. Clustered = true;
  23. }
  24. }
  25. }
Add Comment
Please, Sign In to add comment