Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

后台数据库 #1

Open
logofun opened this issue May 3, 2020 · 0 comments
Open

后台数据库 #1

logofun opened this issue May 3, 2020 · 0 comments

Comments

@logofun
Copy link

logofun commented May 3, 2020

-- Adminer 4.6.2 MySQL dump

SET NAMES utf8;
SET time_zone = '+00:00';
SET foreign_key_checks = 0;
SET sql_mode = 'NO_AUTO_VALUE_ON_ZERO';

CREATE DATABASE kkvue /*!40100 DEFAULT CHARACTER SET utf8 */;
USE kkvue;

DROP TABLE IF EXISTS users;
CREATE TABLE users (
id int(11) NOT NULL AUTO_INCREMENT,
username varchar(15) NOT NULL,
email varchar(15) NOT NULL,
mobile varchar(15) NOT NULL,
PRIMARY KEY (id)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

INSERT INTO users (id, username, email, mobile) VALUES
(1, 'test ', 'test@163.cc', '1234567890');

-- 2020-05-03 09:48:09

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant