-- phpMyAdmin SQL Dump
-- version 5.2.2
-- https://www.phpmyadmin.net/
--
-- Host: localhost:3306
-- Generation Time: Oct 18, 2025 at 09:03 AM
-- Server version: 10.6.23-MariaDB
-- PHP Version: 8.4.13

SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";


/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;

--
-- Database: `castawaysres_castaways`
--

-- --------------------------------------------------------

--
-- Table structure for table `island_registrations`
--

CREATE TABLE `island_registrations` (
  `reg_id` bigint(20) NOT NULL,
  `event_id` int(11) NOT NULL DEFAULT 0,
  `traveler1` varchar(255) DEFAULT NULL,
  `traveler2` varchar(255) DEFAULT NULL,
  `bfname` varchar(50) NOT NULL DEFAULT '',
  `blname` varchar(50) NOT NULL DEFAULT '',
  `baddr1` varchar(100) NOT NULL DEFAULT '',
  `baddr2` varchar(100) NOT NULL DEFAULT '',
  `bcity` varchar(50) NOT NULL DEFAULT '',
  `bstate` varchar(50) NOT NULL DEFAULT '',
  `bzip` varchar(20) NOT NULL DEFAULT '',
  `bcountry` varchar(50) NOT NULL DEFAULT '',
  `phone` varchar(30) NOT NULL DEFAULT '',
  `email` varchar(100) NOT NULL DEFAULT '',
  `cctype` varchar(20) NOT NULL DEFAULT '',
  `cardnumber` varchar(255) NOT NULL DEFAULT '',
  `cvc` varchar(10) NOT NULL DEFAULT '',
  `cardexpiry` varchar(20) NOT NULL DEFAULT '',
  `policy_read` varchar(255) NOT NULL DEFAULT '',
  `cabana` varchar(50) NOT NULL DEFAULT '',
  `cabana_id` varchar(15) NOT NULL DEFAULT '',
  `comments` text NOT NULL,
  `regdate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `aff_id` int(11) DEFAULT NULL,
  `transportation` varchar(10) NOT NULL,
  `transport_cost` decimal(5,2) NOT NULL,
  `total_amount` decimal(6,2) NOT NULL,
  `depositpercent` varchar(100) DEFAULT NULL,
  `depositamount` varchar(100) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `island_registrations`
--

INSERT INTO `island_registrations` (`reg_id`, `event_id`, `traveler1`, `traveler2`, `bfname`, `blname`, `baddr1`, `baddr2`, `bcity`, `bstate`, `bzip`, `bcountry`, `phone`, `email`, `cctype`, `cardnumber`, `cvc`, `cardexpiry`, `policy_read`, `cabana`, `cabana_id`, `comments`, `regdate`, `aff_id`, `transportation`, `transport_cost`, `total_amount`, `depositpercent`, `depositamount`) VALUES
(9, 102, 'jennifer mccoy', 'jennifer mccoy', 'j', '', '16727 lark bunting lane', '', 'Conroe', 'TX', '77385', 'United States', '8004702020', 'luvebugs2@yahoo.com', 'M', 'NDExMTExMTExMTExMTExMQ==', '090', '06-2029', 'I understand the Reservation and Cancellation Policy', 'Pelican', 'pelican', '', '2025-10-17 13:27:40', 1, 'No', 0.00, 0.00, NULL, '0'),
(7, 102, 'jennifer mccoy', 'jennifer mccoy', 'j', '', '16727 lark bunting lane', '', 'Conroe', 'TX', '77385', 'United States', '8004702020', 'luvebugs2@yahoo.com', 'M', 'NDExMTExMTExMTExMjEx', '090', '06-2029', 'I understand the Reservation and Cancellation Policy', 'Dolphin', 'dolphin', '', '2025-10-17 13:22:19', 1, 'No', 0.00, 6500.00, NULL, '6500'),
(8, 102, 'jennifer mccoy', 'jennifer mccoy', 'j', '', '16727 lark bunting lane', '', 'Conroe', 'TX', '77385', 'United States', '8004702020', 'luvebugs2@yahoo.com', 'M', 'NDExMTExMTExMTExMTExMQ==', '090', '06-2029', 'I understand the Reservation and Cancellation Policy', 'Starfish', 'starfish', '', '2025-10-17 13:25:18', 1, 'No', 0.00, 6500.00, NULL, '6500'),
(6, 102, 'Jennifer Michelle Mccoy', 'Christopher Michael Mccoy', 'jennifer mccoy', '', '16727 lark bunting lane', '', 'Conroe', 'TX', '77385', 'United States', '2815411904', 'jennifer@castawaystravel.com', 'M', 'NDExMTExMTExMTExMTExMQ==', '', '06-2029', 'I understand the Reservation and Cancellation Policy', 'Manatee 1', 'manatee1', '', '2025-10-15 12:19:41', 1, 'No', 0.00, 8500.00, NULL, '8500');

--
-- Indexes for dumped tables
--

--
-- Indexes for table `island_registrations`
--
ALTER TABLE `island_registrations`
  ADD PRIMARY KEY (`reg_id`);

--
-- AUTO_INCREMENT for dumped tables
--

--
-- AUTO_INCREMENT for table `island_registrations`
--
ALTER TABLE `island_registrations`
  MODIFY `reg_id` bigint(20) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10;
COMMIT;

/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
