diff options
author | Adam Chlipala <adamc@hcoop.net> | 2009-04-07 16:22:11 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2009-04-07 16:22:11 -0400 |
commit | 24158c81fb4cc8b318ceb5bc461ab2f494cb7b78 (patch) | |
tree | 931b8113bdd0687ea37ee48d1dede73a7cc65a46 /demo/crud1.ur | |
parent | 26ad31287745567b98b357de9793a0e795c63334 (diff) |
Add primary keys to demo
Diffstat (limited to 'demo/crud1.ur')
-rw-r--r-- | demo/crud1.ur | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/demo/crud1.ur b/demo/crud1.ur index 3849e822..796c063d 100644 --- a/demo/crud1.ur +++ b/demo/crud1.ur @@ -1,4 +1,5 @@ table t1 : {Id : int, A : int, B : string, C : float, D : bool} + PRIMARY KEY Id open Crud.Make(struct val tab = t1 |