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

orm: support multiline statements (#9888)

This commit is contained in:
Louis Schmieder
2021-04-27 14:28:57 +02:00
committed by GitHub
parent 9f1ac39770
commit faf2656335
8 changed files with 146 additions and 79 deletions

View File

@ -65,6 +65,7 @@ pub fn (mut app App) new_article() vweb.Result {
sql app.db {
insert article into Article
}
return app.redirect('/')
}