boostorg / website-v2

New Boost website
https://boost.io
Boost Software License 1.0
8 stars 13 forks source link

Remove old code for mailing list. #1363

Closed brianjp93 closed 1 month ago

brianjp93 commented 1 month ago
rbbeeston commented 1 month ago

LGTM, also added Dave, as he's a better judge.

vinniefalco commented 1 month ago

Did the tables also get deleted? Where does the code do that?

brianjp93 commented 1 month ago

@vinniefalco Yes, there is a migration file created by deleting the message model. https://github.com/boostorg/website-v2/pull/1363/files#diff-cf1b0c71fd0d510791428f09f54018a3389600f36dc90ab469f1f4e1263cf85e That migration file produces this sql.

BEGIN;
--
-- Delete model MailingListMessage
--
DROP TABLE "mailing_list_mailinglistmessage" CASCADE;
COMMIT;