mirror of
https://github.com/SamyRai/turash.git
synced 2025-12-26 23:01:33 +00:00
9 lines
238 B
SQL
Executable File
9 lines
238 B
SQL
Executable File
-- Drop subscription and billing tables
|
|
-- Migration: 015_create_subscription_tables.down.sql
|
|
|
|
DROP TABLE IF EXISTS usage_tracking;
|
|
DROP TABLE IF EXISTS invoices;
|
|
DROP TABLE IF EXISTS payment_methods;
|
|
DROP TABLE IF EXISTS subscriptions;
|
|
|