feat(Column::JSONPathColumn): allow search by json path column

Co-authored-by: LeSim <mail@simon.lehericey.net>
This commit is contained in:
mfo 2024-07-22 14:58:16 +02:00
parent e4d460965f
commit 750842f742
No known key found for this signature in database
GPG key ID: 7CE3E1F5B794A8EC
12 changed files with 244 additions and 60 deletions

View file

@ -17,6 +17,10 @@ class Column
"#{table}/#{column}"
end
def self.make_id(table, column)
"#{table}/#{column}"
end
def ==(other)
other.to_json == to_json
end