From 0258897ec7cdf1c1f5d1c6953ebeb3d0fe008eb7 Mon Sep 17 00:00:00 2001 From: AmrDeveloper Date: Fri, 12 Apr 2024 02:58:00 +0200 Subject: [PATCH] Add schema for is_virtual column --- src/schema.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/schema.rs b/src/schema.rs index bbde137..cdacfcf 100644 --- a/src/schema.rs +++ b/src/schema.rs @@ -11,6 +11,7 @@ lazy_static! { map.insert("return_type", DataType::Text); map.insert("class_name", DataType::Text); map.insert("is_method", DataType::Boolean); + map.insert("is_virtual", DataType::Boolean); map.insert("has_template", DataType::Boolean); map }; @@ -28,6 +29,7 @@ lazy_static! { "return_type", "class_name", "is_method", + "is_virtual", "has_template", ], );