diff options
author | Adam Chlipala <adamc@hcoop.net> | 2009-04-07 18:47:47 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2009-04-07 18:47:47 -0400 |
commit | ab0bbbf29220a995f6fa83ae43e0a4a88c9b5159 (patch) | |
tree | becc08d27931380ecbc07af19ee9dc612d5edf47 /demo | |
parent | 24158c81fb4cc8b318ceb5bc461ab2f494cb7b78 (diff) |
FOREIGN KEY, without ability to link NULL to NOT NULL (and with some lingering problems in row inference)
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 |