1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

examples: fix missing products table in v run examples/vweb_fullstack/ (#17253)

This commit is contained in:
fanlia 2023-02-09 18:03:23 +08:00 committed by GitHub
parent 34efc9c427
commit 4c33a92aac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,6 +21,7 @@ fn main() {
sql db {
create table User
create table Product
} or { panic('error on create table: ${err}') }
db.close() or { panic(err) }