schema top-level constant
CollectionSchema
const schema
Implementation
const schema = CollectionSchema(
tableName,
properties: [
PropertySchema(
"id",
type: PropertyType.text,
primaryKey: true,
nullable: false,
),
PropertySchema("name", type: PropertyType.text),
PropertySchema("age", type: PropertyType.integer),
],
);