ASDV-WebDev/Semester 3/Assignments/dbase.sql

38 lines
932 B
SQL

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

-- phpMyAdmin SQL Dump
-- version 5.2.0
-- https://www.phpmyadmin.net/
--
-- Host: localhost:8889
-- Generation Time: Apr 29, 2024 at 02:43 PM
-- Server version: 5.7.39
-- PHP Version: 7.4.33
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: `downloads`
--
-- --------------------------------------------------------
--
-- Table structure for table `binary_files`
--
CREATE TABLE `binary_files` (
`key_ai` int(11) NOT NULL,
`file_name` varchar(1000) NOT NULL,
`file_extension` varchar(100) NOT NULL,
`size_kb` bigint(20) NOT NULL,
`binary_data` longblob NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;