-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #26 from rwth-acis/develop
Release version v0.3.0
- Loading branch information
Showing
34 changed files
with
1,360 additions
and
1,215 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
java -classpath ../../lib/jooq-3.8.2.jar;../../lib/jooq-meta-3.8.2.jar;../../lib/jooq-codegen-3.8.2.jar;../../lib/mysql-connector-java-5.1.6.jar;. org.jooq.util.GenerationTool /activitytracker_generation_info.xml | ||
java -classpath ../../service/jooq-3.9.1.jar;../../service/jooq-meta-3.9.1.jar;../../service/jooq-codegen-3.9.1.jar;../../service/mysql-connector-java-5.1.6.jar;. org.jooq.util.GenerationTool /activitytracker_generation_info.xml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
java -classpath ../../lib/jooq-3.8.2.jar:../../lib/jooq-meta-3.8.2.jar:../../lib/jooq-codegen-3.8.2.jar:../../lib/mysql-connector-java-5.1.6.jar:. org.jooq.util.GenerationTool /reqbaz_generation_info.xml | ||
java -classpath ../../service/jooq-3.9.1.jar:../../service/jooq-meta-3.9.1.jar:../../service/jooq-codegen-3.9.1.jar:../../service/mysql-connector-java-5.1.6.jar:. org.jooq.util.GenerationTool /reqbaz_generation_info.xml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,23 @@ | ||
SET FOREIGN_KEY_CHECKS = 0; | ||
|
||
CREATE DATABASE IF NOT EXISTS reqbaztrack; | ||
|
||
DROP TABLE IF EXISTS reqbaztrack.activity; | ||
|
||
-- tables | ||
-- Table activity | ||
CREATE TABLE IF NOT EXISTS activity ( | ||
Id INT NOT NULL AUTO_INCREMENT, | ||
creation_time TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, | ||
activity_action VARCHAR(255) NOT NULL, | ||
data_url VARCHAR(255) NULL, | ||
data_type VARCHAR(255) NOT NULL, | ||
data_frontend_url VARCHAR(255) NULL, | ||
parent_data_url VARCHAR(255) NULL, | ||
parent_data_type VARCHAR(255) NULL, | ||
user_url VARCHAR(255) NULL, | ||
CONSTRAINT activity_pk PRIMARY KEY (Id) | ||
CREATE TABLE IF NOT EXISTS reqbaztrack.activity ( | ||
id INT NOT NULL AUTO_INCREMENT, | ||
creation_date TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, | ||
activity_action VARCHAR(255) NOT NULL, | ||
origin VARCHAR(255) NOT NULL, | ||
data_url VARCHAR(255) NULL, | ||
data_type VARCHAR(255) NULL, | ||
data_frontend_url VARCHAR(255) NULL, | ||
parent_data_url VARCHAR(255) NULL, | ||
parent_data_type VARCHAR(255) NULL, | ||
user_url VARCHAR(255) NULL, | ||
CONSTRAINT activity_pk PRIMARY KEY (id) | ||
); | ||
|
||
SET FOREIGN_KEY_CHECKS = 1; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.