Skip to content

Commit

Permalink
lower case table name for User and Authority. fix case problem with l…
Browse files Browse the repository at this point in the history
…inux
  • Loading branch information
jlmonteagudo committed Jan 21, 2017
1 parent 4432848 commit cba8716
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Expand Up @@ -16,7 +16,7 @@
import javax.validation.constraints.NotNull;

@Entity
@Table(name = "AUTHORITY")
@Table(name = "authority")
public class Authority {

@Id
Expand Down
Expand Up @@ -20,7 +20,7 @@
import javax.validation.constraints.Size;

@Entity
@Table(name = "USER")
@Table(name = "user")
public class User {

@Id
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "generator-spring-rest-jwt",
"version": "0.0.4",
"version": "0.0.5",
"description": "Creates the skeleton of an API REST developed with Spring Boot, that uses JWT to protect the API",
"homepage": "",
"author": {
Expand Down

0 comments on commit cba8716

Please sign in to comment.