Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
tingweiwang
/
ksy-project-docking
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit 0a863bac
authored
Mar 14, 2020
by
李承洲
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix:修复user-center-backend-sql的脚本没有指定DB名的bug
1 parent
56732f2a
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
sql/user-center-backend-sql/20190411.sql
sql/user-center-backend-sql/20190425.sql
sql/user-center-backend-sql/20190411.sql
View file @
0a863ba
use
`user-center`
;
create
table
`user-center`
.
user_info
(
id
int
unsigned
auto_increment
,
...
...
sql/user-center-backend-sql/20190425.sql
View file @
0a863ba
use
`user-center`
;
CREATE
UNIQUE
INDEX
user_info_username_uindex
ON
user_info
(
username
);
ALTER
TABLE
user_info
MODIFY
phone
varchar
(
11
)
NOT
NULL
;
CREATE
UNIQUE
INDEX
user_info_phone_uindex
ON
user_info
(
phone
);
...
...
Write
Preview
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment