summaryrefslogtreecommitdiff
path: root/demo/more/orm1.ur
diff options
context:
space:
mode:
Diffstat (limited to 'demo/more/orm1.ur')
-rw-r--r--demo/more/orm1.ur6
1 files changed, 3 insertions, 3 deletions
diff --git a/demo/more/orm1.ur b/demo/more/orm1.ur
index bbbe2b00..b5ba29ac 100644
--- a/demo/more/orm1.ur
+++ b/demo/more/orm1.ur
@@ -1,13 +1,13 @@
open Orm
structure T = Table(struct
- val cols = {A = local [int] _,
- B = local [string] _}
+ val cols = {A = local [int],
+ B = local [string]}
end)
structure S = Table(struct
val cols = {C = T.id,
- D = local [float] _}
+ D = local [float]}
end)
fun action () =