diff options
Diffstat (limited to 'demo')
-rw-r--r-- | demo/broadcast.ur | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/demo/broadcast.ur b/demo/broadcast.ur index 29d8d8fb..0b04b136 100644 --- a/demo/broadcast.ur +++ b/demo/broadcast.ur @@ -1,7 +1,7 @@ functor Make(M : sig type t end) = struct sequence s table t : {Id : int, Client : client, Channel : channel M.t} - PRIMARY KEY Id + PRIMARY KEY (Id, Client) type topic = int |