You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

21 lines
555 B

-- Adminer 4.8.1 MySQL 5.7.36-0ubuntu0.18.04.1 dump
SET NAMES utf8;
SET time_zone = '+00:00';
SET foreign_key_checks = 0;
SET sql_mode = 'NO_AUTO_VALUE_ON_ZERO';
SET NAMES utf8mb4;
DROP TABLE IF EXISTS `event_venue_photos`;
CREATE TABLE `event_venue_photos` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`photo` varchar(255) DEFAULT NULL,
`event_id` int(10) NOT NULL,
`status` tinyint(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`),
KEY `event_venue_photos_event_id_fk` (`event_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- 2021-11-03 08:30:56