Table not found bug

Table filter_car {
  car_id integer
  filter_id integer
}

Ref: filter_car.car_id > car.id

Hi! Ref: filter_car says that filter_car table not found end returns to me: (51:6) Can’t find table “null”.“car”

You must define the car table before the ref’s definition, for example:

Table car {
  id integer
}

Oops) my mistake was that I defined carS table, but ref to ‘car’. I got confused because the app underlined filter_car part) Thank you)

1 Like

Thank you for pointing out the confusion.

Yes, the car.id should be highlighted instead. We’ll look into it as soon as we can.

Thanks.

1 Like