10 lines
314 B
SQL
10 lines
314 B
SQL
-- Add slug column to artists table for SEO-friendly URLs (UP-only sequence)
|
|
|
|
-- Add slug column
|
|
ALTER TABLE artists ADD COLUMN slug TEXT;
|
|
|
|
-- Create unique index on slug
|
|
CREATE UNIQUE INDEX IF NOT EXISTS idx_artists_slug ON artists(slug);
|
|
|
|
-- Note: Existing artists will need slugs populated via migration script
|