einar
06/18/2019, 12:00 PMimport com.myapp.model.Medication;
import com.myapp.model.Dosage;
CREATE TABLE _Treatment(
startDate TEXT NOT NULL,
endDate TEXT,
medication TEXT as Medication,
dosage TEXT as Dosage
);
Is there a recommended way to encode/decode this in a ColumnAdapter?