addons-server/migrations/83-give-addons-a-slug.sql

3 строки
200 B
SQL

-- This should not default to null (and be UNIQUE) after zamboni takes over all the creation of add-ons
ALTER TABLE addons ADD COLUMN `slug` varchar(30) DEFAULT NULL AFTER `name`, ADD UNIQUE(`slug`);