DEFINE TABLE OVERWRITE post SCHEMALESS; DEFINE FIELD OVERWRITE title ON post TYPE string; DEFINE FIELD OVERWRITE content ON post TYPE string; DEFINE FIELD OVERWRITE author ON post TYPE record; DEFINE FIELD OVERWRITE created_at ON post TYPE datetime DEFAULT time::now(); DEFINE FIELD OVERWRITE status ON post TYPE string DEFAULT 'DRAFT' ASSERT $value IN ['DRAFT', 'PUBLISHED'];