Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. class customers
  2. {
  3. @Column(primaryKey: true, autoincrement: true)
  4. int id;
  5.  
  6. @Column(unique: true, nullable: false)
  7. String username;
  8.  
  9. @Column(nullable: false)
  10. String password;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement