> * @since 1.0.0 */ protected static $columns = [ 'tag_id' => ['name' => 'tag_id', 'type' => 'int', 'internal' => 'id'], 'tag_title' => ['name' => 'tag_title', 'type' => 'string', 'internal' => 'title'], 'tag_color' => ['name' => 'tag_color', 'type' => 'string', 'internal' => 'color'], ]; /** * Primary table. * * @var string * @since 1.0.0 */ protected static $table = 'tag'; /** * Primary field name. * * @var string * @since 1.0.0 */ protected static $primaryField = 'tag_id'; /** * Created at. * * @var string * @since 1.0.0 */ protected static $createdAt = 'tag_created_at'; }