Guest User

Untitled

a guest
Jun 19th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. ScLanguage:
  2. columns:
  3. name: { type: string(255), notnull:true,unique:true}
  4. logo: { type: string(50) }
  5.  
  6. ScMember:
  7. actAs: { Timestampable: ~ }
  8. columns:
  9. login: { type: string(50), notnull:true, unique:true}
  10. email: { type: string(100), notnull:true, unique:true}
  11. password: { type: string(40), notnull:true }
  12.  
  13. ScCode:
  14. actAs: { Timestampable: ~ }
  15. columns:
  16. code: { type:blob, notnull:true}
  17. member_id: { type : integer, notnull:true }
  18. language_id: { type : integer, notnull:true }
  19. relations:
  20. ScMember: { local:member_id, foreign:id, foreignAlias: ScAuthor }
  21. ScLanguage: { local:language_id, foreign:id, foreignAlias: ScLanguages }
Add Comment
Please, Sign In to add comment