vxx2 / vlib / v / checker / tests / orm_table_attributes.vv
13 lines · 11 sloc · 157 bytes · 757929392e0e7a75fc1272116460981e589737d5
Raw
1import db.sqlite
2
3@[table]
4struct Foo {
5 id int @[primary; sql: serial]
6}
7
8fn main() {
9 db := sqlite.connect(':memory:')!
10 sql db {
11 create table Foo
12 }!
13}
14