final
This commit is contained in:
17
cbd420.sql
17
cbd420.sql
@@ -3,7 +3,7 @@
|
||||
-- https://www.phpmyadmin.net/
|
||||
--
|
||||
-- Host: localhost:3306
|
||||
-- Generation Time: Dec 21, 2025 at 10:29 AM
|
||||
-- Generation Time: Dec 21, 2025 at 11:13 AM
|
||||
-- Server version: 10.11.14-MariaDB-0+deb12u2
|
||||
-- PHP Version: 8.2.29
|
||||
|
||||
@@ -87,10 +87,9 @@ CREATE TABLE `drops` (
|
||||
--
|
||||
|
||||
CREATE TABLE `notification_subscribers` (
|
||||
`id` int(11) NOT NULL,
|
||||
`buyer_id` int(11) DEFAULT NULL,
|
||||
`type` text NOT NULL DEFAULT 'email',
|
||||
`address` text NOT NULL
|
||||
`address` varchar(100) NOT NULL,
|
||||
`type` text NOT NULL DEFAULT '\'email\'',
|
||||
`buyer_id` int(11) DEFAULT NULL
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
@@ -175,7 +174,7 @@ ALTER TABLE `drops`
|
||||
-- Indexes for table `notification_subscribers`
|
||||
--
|
||||
ALTER TABLE `notification_subscribers`
|
||||
ADD PRIMARY KEY (`id`),
|
||||
ADD PRIMARY KEY (`address`),
|
||||
ADD KEY `buyer_id` (`buyer_id`);
|
||||
|
||||
--
|
||||
@@ -235,12 +234,6 @@ ALTER TABLE `deliveries`
|
||||
ALTER TABLE `drops`
|
||||
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
|
||||
|
||||
--
|
||||
-- AUTO_INCREMENT for table `notification_subscribers`
|
||||
--
|
||||
ALTER TABLE `notification_subscribers`
|
||||
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
|
||||
|
||||
--
|
||||
-- AUTO_INCREMENT for table `pending_orders`
|
||||
--
|
||||
|
||||
Reference in New Issue
Block a user