Files
MyTube/backend/drizzle/0005_tired_demogoblin.sql
2025-12-18 17:57:14 -05:00

4 lines
214 B
SQL

-- Add channel_url column to videos table
-- Note: SQLite doesn't support IF NOT EXISTS for ALTER TABLE ADD COLUMN
-- This migration assumes the column doesn't exist yet
ALTER TABLE `videos` ADD `channel_url` text;