Hi,
Is there a feature to add a default value on a column during a CSV import? For example, I have a relation of classes, another one of students, and a many-to-many student_classes relation. If I'm on a class record, and I'm browsing through the list of students in that class (by filtering student_classes by class), let's say I want to import a CSV of new students in the current class (creating new rows in the student_classes relation, using record lookups to populate the students). The CSV doesn't contain info about what class they're in, but I know what class the user means since they're doing this operation through the current class record. Could I add the current class ID (like app.get_record_id(0)) to one of the CSV columns, instead of having to add the class ID on every row on the CSV before importing?