Skip to content

Commit

Permalink
DB evolution for Link feature
Browse files Browse the repository at this point in the history
  • Loading branch information
Alejandro Lujan committed May 2, 2013
1 parent 02f48ec commit 1057841
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions 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;

0 comments on commit 1057841

Please sign in to comment.