Advertisement
Guest User

Untitled

a guest
Jun 28th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. create table wellnesstst.archive_class_user(
  2. id bigint not null,
  3. user_name varchar(51) not null,
  4. constraint archive_class_user_fk foreign key (id) references wellnesstst.archive_class(id),
  5. constraint archive_class_user_pk primary key (id, user_name)
  6. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement