Skip to content

Commit

Permalink
Add schema for is_virtual column
Browse files Browse the repository at this point in the history
  • Loading branch information
AmrDeveloper committed Apr 12, 2024
1 parent 39612e0 commit 0258897
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/schema.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
};
Expand All @@ -28,6 +29,7 @@ lazy_static! {
"return_type",
"class_name",
"is_method",
"is_virtual",
"has_template",
],
);
Expand Down

0 comments on commit 0258897

Please sign in to comment.