Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ByeCorps ID Legacy
Manage
Activity
Members
Labels
Plan
Wiki
JetBrains YouTrack
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
ByeCorps
ID
ByeCorps ID Legacy
Commits
6b61e962
Commit
6b61e962
authored
1 year ago
by
Bye
Browse files
Options
Downloads
Patches
Plain Diff
Upload SQL dump
Please make PHP do this later.
parent
2260294a
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
id.sql
+51
-0
51 additions, 0 deletions
id.sql
with
51 additions
and
0 deletions
id.sql
0 → 100644
+
51
−
0
View file @
6b61e962
-- 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 */
;
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment