reset serial postgre

This commit is contained in:
Alexander Popov 2024-12-04 12:39:53 +03:00
parent 9d547f2df3
commit f1f9bf206c

View File

@ -0,0 +1,10 @@
---
title: "🗃️ Сброс значения Serial в PostgreSQL"
date: 2024-12-04T12:38:25+03:00
draft: false
tags: [tips, sql]
---
```sql
SELECT setval('cards_id_seq', 1, false);
```