> For the complete documentation index, see [llms.txt](https://db.coolstone.dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://db.coolstone.dev/browser/manage.md).

# Manage

## Create Record <a href="#create" id="create"></a>

{% code lineNumbers="true" %}

```javascript
db.create('tag',data)
```

{% endcode %}

### Parameters

<table><thead><tr><th>Name</th><th>About</th><th>Type</th><th data-type="checkbox">Required</th></tr></thead><tbody><tr><td>tag</td><td>The new Record's tag</td><td>String</td><td>true</td></tr><tr><td>data</td><td>The new Record's data</td><td>String || object</td><td>true</td></tr></tbody></table>

## Delete Record <a href="#delete" id="delete"></a>

{% code lineNumbers="true" %}

```javascript
db.get('tag').delete()
```

{% endcode %}

### Parameters

<table><thead><tr><th>Name</th><th>About</th><th>Type</th><th data-type="checkbox">Required</th></tr></thead><tbody><tr><td>tag</td><td>The tag of the Record to delete</td><td>String</td><td>true</td></tr></tbody></table>
