* add columns to order * Fixes * Updated to correct migration number
4 lines
294 B
SQL
4 lines
294 B
SQL
-- Description: Add sms and whatsapp consent fields to ordersALTER TABLE orders ADD COLUMN IF NOT EXISTS sms integer NOT NULL DEFAULT 0;
|
|
ALTER TABLE orders ADD COLUMN IF NOT EXISTS sms integer NOT NULL DEFAULT 0;
|
|
ALTER TABLE orders ADD COLUMN IF NOT EXISTS whatsapp integer NOT NULL DEFAULT 0;
|