15 lines
291 B
SQL
15 lines
291 B
SQL
-- Migration to add description field to drops table
|
|
-- Date: 2025-01-XX
|
|
|
|
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
|
|
START TRANSACTION;
|
|
SET time_zone = "+00:00";
|
|
|
|
-- Add description column to drops table
|
|
ALTER TABLE `drops`
|
|
ADD COLUMN `description` text DEFAULT NULL AFTER `item`;
|
|
|
|
COMMIT;
|
|
|
|
|