4.0.0: Исправлена обработка старых дампов
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 1m19s
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 1m19s
This commit is contained in:
@@ -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