diff --git a/conf/evolutions/default/8.sql b/conf/evolutions/default/8.sql new file mode 100644 index 0000000..463a75e --- /dev/null +++ b/conf/evolutions/default/8.sql @@ -0,0 +1,13 @@ +# Links + +# --- !Ups + +create table link ( + sourceid bigint not null references s1user(id) ON DELETE CASCADE, + targetid bigint not null references s1user(id) ON DELETE CASCADE, + note varchar(500) +); + +# --- !Downs + +drop table link;