Add DB setup to readme

This commit is contained in:
Alex Cabal 2024-10-23 11:09:16 -05:00
parent b6fbcaba26
commit 82e43cb520
20 changed files with 27 additions and 21 deletions

View file

@ -1,4 +1,4 @@
CREATE TABLE `NewsletterSubscriptions` (
CREATE TABLE IF NOT EXISTS `NewsletterSubscriptions` (
`UserId` int(10) unsigned NOT NULL,
`IsConfirmed` tinyint(1) unsigned NOT NULL DEFAULT 0,
`IsSubscribedToNewsletter` tinyint(1) unsigned NOT NULL DEFAULT 1,