From 0782dc390525c5d1db66ea53e1208689c7d0bfcb Mon Sep 17 00:00:00 2001 From: multiple creatures Date: Thu, 9 May 2019 12:09:04 -0500 Subject: Drop remaining OStatus and PuSH code, as well as related database items. --- db/migrate/20190509164727_drop_subscriptions.rb | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 db/migrate/20190509164727_drop_subscriptions.rb (limited to 'db/migrate/20190509164727_drop_subscriptions.rb') diff --git a/db/migrate/20190509164727_drop_subscriptions.rb b/db/migrate/20190509164727_drop_subscriptions.rb new file mode 100644 index 000000000..fec395235 --- /dev/null +++ b/db/migrate/20190509164727_drop_subscriptions.rb @@ -0,0 +1,7 @@ +class DropSubscriptions < ActiveRecord::Migration[5.2] + def change + safety_assured { + drop_table :subscriptions + } + end +end -- cgit