This is the ThingsDB documentation for version v0, click here for the latest version!

del

Delete a member from an existing enumerator type.

A member may only be removed if the member is no longer being used. Otherwise an operation_err() is raised.

Action

mod_enum(enum, 'del', name)

Arguments

Argument Type Description
enum str Name of the enumerator type where the member has to be removed from.
'del' str Passing this argument will result in a delete action.
name str Name of the member to be removed.

Return value

The value nil.

Example

This code shows how to use the action del:

// Create enum `Color`
set_enum('Color', {
    RED: '#ff0000',
    GREEN: '#00ff00'
});

// Remove `GREEN` from enum `Color`
mod_enum('Color', 'del', 'GREEN');

Return value in JSON format

null