Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
Truong_Binh_Nguyen
/
spring-hibernate-sample
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 3a8fea11
authored
Jan 11, 2018
by
Truong_Binh_Nguyen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add readme.md
1 parent
aa4e2a8e
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
0 deletions
readme.md
readme.md
0 → 100644
View file @
3a8fea1
Demo Project Spring + Hibernate + Maven + Mysql
mysql script :
CREATE TABLE
`example_db`
.
`stock`
(
`STOCK_ID`
int(10) unsigned NOT NULL AUTO_INCREMENT,
`STOCK_CODE`
varchar(10) NOT NULL,
`STOCK_NAME`
varchar(20) NOT NULL,
PRIMARY KEY (
`STOCK_ID`
) USING BTREE,
UNIQUE KEY
`UNI_STOCK_NAME`
(
`STOCK_NAME`
),
UNIQUE KEY
`UNI_STOCK_ID`
(
`STOCK_CODE`
) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
\ No newline at end of file
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