fix: исправлен импорт TaskForm с явным расширением .jsx, версия 2.9.1
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 39s
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 39s
This commit is contained in:
14
play-life-backend/migrations/016_add_repetition_period.sql
Normal file
14
play-life-backend/migrations/016_add_repetition_period.sql
Normal file
@@ -0,0 +1,14 @@
|
||||
-- Migration: Add repetition_period field to tasks table
|
||||
-- This script adds the repetition_period field for recurring tasks
|
||||
|
||||
-- ============================================
|
||||
-- Add repetition_period column
|
||||
-- ============================================
|
||||
ALTER TABLE tasks
|
||||
ADD COLUMN IF NOT EXISTS repetition_period INTERVAL;
|
||||
|
||||
-- ============================================
|
||||
-- Comments for documentation
|
||||
-- ============================================
|
||||
COMMENT ON COLUMN tasks.repetition_period IS 'Period after which task should be repeated (NULL means task is not recurring)';
|
||||
|
||||
Reference in New Issue
Block a user