> ## Documentation Index
> Fetch the complete documentation index at: https://docs.jaksam-scripts.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Refresh database

> Refresh Doors Creator after manually creating something in the database.

Useful to refresh Doors Creator after you manually create something in the database.

```lua Export theme={null}
exports["doors_creator"]:refreshDatabase()
```

## Example

```lua theme={null}
RegisterCommand("refreshDoorsCreator", function(playerId)
    -- Only server console can use the command
    if(playerId and playerId > 0) then return end

    exports["doors_creator"]:refreshDatabase()
end)
```


## Related topics

- [Server](/doors-creator/server/index.md)
- [Refresh bill](/billing-ui/server/refresh-bill.md)
- [Refresh player owned vehicles](/vehicles-keys/server/refresh-player-owned-vehicles.md)
- [Refresh self owned vehicles](/vehicles-keys/client/refresh-self-owned-vehicles.md)
