Skip to content
Snippets Groups Projects
Select Git revision
  • 6b61e9621d739ae639bd6f4189fd64b9462579c5
  • main default protected
  • rewrite
  • production
4 results

id.sql

Blame
  • id.sql 1.26 KiB
    -- phpMyAdmin SQL Dump
    -- version 5.2.1
    -- https://www.phpmyadmin.net/
    --
    -- Host: localhost
    -- Generation Time: Oct 31, 2023 at 08:26 PM
    -- Server version: 10.6.12-MariaDB-0ubuntu0.22.04.1
    -- PHP Version: 8.1.2-1ubuntu2.14
    
    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: `id`
    --
    
    -- --------------------------------------------------------
    
    --
    -- Table structure for table `accounts`
    --
    
    CREATE TABLE `accounts` (
      `id` tinytext NOT NULL COMMENT 'BCID',
      `email` text NOT NULL,
      `password` text NOT NULL COMMENT 'Hashed!!!',
      `verified` tinyint(1) NOT NULL
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
    
    --
    -- Indexes for dumped tables
    --
    
    --
    -- Indexes for table `accounts`
    --
    ALTER TABLE `accounts`
      ADD PRIMARY KEY (`id`(7)),
      ADD UNIQUE KEY `email` (`email`) USING HASH;
    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 */;