Refactor breadcrumb title setting and update icons in navigation components

This commit is contained in:
liosha84
2025-07-02 13:01:21 +03:00
parent 0eeb93cd57
commit 51dfb3b24f
9 changed files with 54 additions and 29 deletions
@@ -0,0 +1,6 @@
-- Column: public.tutorials.
ALTER TABLE IF EXISTS public.tutorials DROP COLUMN IF EXISTS id;
ALTER TABLE IF EXISTS public.tutorials
ADD COLUMN id bigint NOT NULL GENERATED BY DEFAULT AS IDENTITY ( INCREMENT 1 START 1 MINVALUE 1 MAXVALUE 9223372036854775807 CACHE 1 );