Skip to content
This repository has been archived by the owner on May 12, 2018. It is now read-only.

Commit

Permalink
automatic project update
Browse files Browse the repository at this point in the history
  • Loading branch information
jdubois committed Aug 18, 2016
1 parent 3aefd9b commit c19d07c
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .yo-rc.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"en"
],
"serverPort": 8080,
"jhipsterVersion": "3.6.0",
"jhipsterVersion": "3.6.1",
"enableSocialSignIn": false,
"useSass": false,
"jhiPrefix": "jhi"
Expand Down
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated on 2016-08-17 using generator-jhipster 3.6.0
// Generated on 2016-08-18 using generator-jhipster 3.6.1
'use strict';

var gulp = require('gulp'),
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"eslint-config-angular": "0.5.0",
"eslint-plugin-angular": "1.3.1",
"event-stream": "3.3.4",
"generator-jhipster": "3.6.0",
"generator-jhipster": "3.6.1",
"gulp": "3.9.1",
"gulp-angular-filesort": "1.1.1",
"gulp-angular-templatecache": "2.0.0",
Expand Down
2 changes: 1 addition & 1 deletion src/main/docker/mysql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '2'
services:
jhipstersampleapplication-mysql:
container_name: jhipstersampleapplication-mysql
image: mysql:5.7.13
image: mysql:5.7.14
# volumes:
# - ~/volumes/jhipster/jhipsterSampleApplication/mysql/:/var/lib/mysql/
environment:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,12 @@
<addPrimaryKey columnNames="user_id, authority_name" tableName="jhi_user_authority"/>

<createTable tableName="jhi_persistent_token">
<column name="series" type="varchar(255)">
<!-- Maximum line length of Base64 output is 76 -->
<column name="series" type="varchar(76)">
<constraints primaryKey="true" nullable="false"/>
</column>
<column name="user_id" type="bigint"/>
<column name="token_value" type="varchar(255)">
<column name="token_value" type="varchar(76)">
<constraints nullable="false" />
</column>
<column name="token_date" type="date"/>
Expand Down Expand Up @@ -134,7 +135,7 @@
<column name="event_id" type="bigint" autoIncrement="${autoIncrement}">
<constraints primaryKey="true" nullable="false"/>
</column>
<column name="principal" type="varchar(255)">
<column name="principal" type="varchar(50)">
<constraints nullable="false" />
</column>
<column name="event_date" type="timestamp"/>
Expand All @@ -145,7 +146,7 @@
<column name="event_id" type="bigint">
<constraints nullable="false"/>
</column>
<column name="name" type="varchar(255)">
<column name="name" type="varchar(150)">
<constraints nullable="false"/>
</column>
<column name="value" type="varchar(255)"/>
Expand All @@ -155,7 +156,7 @@
<createIndex indexName="idx_persistent_audit_event"
tableName="jhi_persistent_audit_event"
unique="false">
<column name="principal" type="varchar(255)"/>
<column name="principal" type="50"/>
<column name="event_date" type="timestamp"/>
</createIndex>

Expand Down

0 comments on commit c19d07c

Please sign in to comment.