mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
16 lines
331 B
MySQL
16 lines
331 B
MySQL
|
|
-- Type: UNDO
|
||
|
|
-- Name: service_usage
|
||
|
|
-- Description: Create table for tracking service usage and enforce limit
|
||
|
|
|
||
|
|
BEGIN;
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS omnivore.service_usage;
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS omnivore.subscription_plan;
|
||
|
|
|
||
|
|
ATLER TABLE omnivore.received_emails
|
||
|
|
DROP COLUMN IF EXISTS reply_to,
|
||
|
|
DROP COLUMN IF EXISTS reply;
|
||
|
|
|
||
|
|
COMMIT;
|