From 8d5931c96c98fbc8bec475247486ee4673117717 Mon Sep 17 00:00:00 2001 From: Yeuda By <68661509+YeudaBy@users.noreply.github.com> Date: Sun, 10 Oct 2021 03:47:35 +0300 Subject: [PATCH] orm: fix a typo (#12131) --- vlib/orm/orm.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/orm/orm.v b/vlib/orm/orm.v index 38a2e11a49..922cf37f8c 100644 --- a/vlib/orm/orm.v +++ b/vlib/orm/orm.v @@ -149,7 +149,7 @@ pub interface Connection { update(table string, data QueryData, where QueryData) ? delete(table string, where QueryData) ? create(table string, fields []TableField) ? - drop(talbe string) ? + drop(table string) ? last_id() Primitive }