diff --git a/doc/architecture/blueprints/cells/iterations/cells-1.0.md b/doc/architecture/blueprints/cells/iterations/cells-1.0.md
index d213c349bee597a627ea9dd28ebee710ace7ac50..9cd7eb7920bad6840f74b8fa695a175a7a726222 100644
--- a/doc/architecture/blueprints/cells/iterations/cells-1.0.md
+++ b/doc/architecture/blueprints/cells/iterations/cells-1.0.md
@@ -351,7 +351,7 @@ def replenish_table_seq(table, lower_limit, count)
   return if max_id - last_id > lower_limit
 
   new_start, new_limit = post("/api/v4/internal/cells/database/claim", { table: table, count: count })
-  execute("ALTER SEQUENCE START ? MAXVALUE ?", new_start, new_limit)
+  execute("ALTER SEQUENCE RESTART ? MAXVALUE ?", new_start, new_limit)
 end
 ```