13 lines
242 B
MySQL
13 lines
242 B
MySQL
|
|
-- Migration 114: Add wiki_slug to customers
|
||
|
|
-- Created: 2026-02-09
|
||
|
|
|
||
|
|
BEGIN;
|
||
|
|
|
||
|
|
ALTER TABLE customers
|
||
|
|
ADD COLUMN IF NOT EXISTS wiki_slug VARCHAR(255);
|
||
|
|
|
||
|
|
CREATE INDEX IF NOT EXISTS idx_customers_wiki_slug
|
||
|
|
ON customers(wiki_slug);
|
||
|
|
|
||
|
|
COMMIT;
|