Gitly
English
Русский
Español
日本語
中文
Português
Pricing
Log in
Register
vxx2
/
vlib
/
v
/
checker
/
tests
/
orm_table_attributes.vv
13
lines
·
11
sloc
·
157 bytes
·
757929392e0e7a75fc1272116460981e589737d5
Raw
1
import db.sqlite
2
3
@[table]
4
struct Foo {
5
id int @[primary; sql: serial]
6
}
7
8
fn main() {
9
db := sqlite.connect(':memory:')!
10
sql db {
11
create table Foo
12
}!
13
}
14