-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/maven/fixes/7.0' into maven/rele…
…ase/7.0
- Loading branch information
Showing
27 changed files
with
408 additions
and
705 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,6 +35,6 @@ | |
</build> | ||
|
||
<modules> | ||
<module>mysql</module> | ||
<module>postgresql</module> | ||
</modules> | ||
</project> |
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
2 changes: 1 addition & 1 deletion
2
...ker/build/mysql/src/main/build/Dockerfile → ...uild/postgresql/src/main/build/Dockerfile
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
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
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
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 |
---|---|---|
@@ -0,0 +1,85 @@ | ||
CREATE TABLE h5p_libraries_languages ( | ||
library_id integer NOT NULL, | ||
translation text NOT NULL, | ||
language_code varchar(31) NOT NULL); | ||
|
||
CREATE TABLE h5p_libraries ( | ||
id SERIAL PRIMARY KEY, | ||
fullscreen integer NOT NULL, | ||
runnable integer NOT NULL, | ||
name varchar(127) NOT NULL, | ||
title varchar(255) NOT NULL, | ||
has_icon integer NOT NULL DEFAULT '0' , | ||
restricted integer NOT NULL DEFAULT '0' , | ||
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, | ||
major_version integer NOT NULL, | ||
updated_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, | ||
embed_types varchar(255) NOT NULL, | ||
minor_version integer NOT NULL, | ||
patch_version integer NOT NULL, | ||
drop_library_css text NULL, | ||
preloaded_js text NULL, | ||
preloaded_css text NULL, | ||
tutorial_url varchar(1023) NOT NULL, | ||
semantics text NOT NULL); | ||
|
||
CREATE INDEX idx_h5p_libraries_name | ||
ON h5p_libraries (name, title); | ||
|
||
CREATE TABLE h5p_libraries_libraries ( | ||
library_id integer NOT NULL, | ||
required_library_id integer NOT NULL, | ||
dependency_type varchar(31) NOT NULL); | ||
|
||
CREATE TABLE h5p_contents ( | ||
id SERIAL PRIMARY KEY, | ||
library_id integer NOT NULL, | ||
user_id integer NOT NULL, | ||
license varchar(7) NULL, | ||
parameters text NOT NULL, | ||
title varchar(255) NOT NULL, | ||
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP , | ||
author varchar(127) NULL, | ||
updated_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP , | ||
slug varchar(127) NOT NULL, | ||
keywords text NULL, | ||
disable integer NOT NULL DEFAULT '0' , | ||
content_type varchar(127) NULL, | ||
embed_type varchar(127) NOT NULL, | ||
filtered text NOT NULL, | ||
description text NULL); | ||
|
||
CREATE INDEX idx_h5p_contents_title | ||
ON h5p_contents (title); | ||
|
||
CREATE TABLE h5p_contents_libraries ( | ||
id SERIAL PRIMARY KEY, | ||
library_id integer NOT NULL, | ||
drop_css integer NOT NULL, | ||
content_id integer NOT NULL, | ||
weight integer NOT NULL DEFAULT '0' , | ||
dependency_type varchar(31) NOT NULL); | ||
|
||
CREATE TABLE h5p_libraries_hub_cache ( | ||
id SERIAL PRIMARY KEY, | ||
machine_name varchar(127) NOT NULL, | ||
updated_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, | ||
keywords text NULL, | ||
owner varchar(511) NULL, | ||
screenshots text NULL, | ||
tutorial varchar(511) NULL, | ||
title varchar(255) NOT NULL, | ||
minor_version integer NOT NULL, | ||
popularity integer NOT NULL, | ||
description text NOT NULL, | ||
h5p_minor_version integer NULL, | ||
h5p_major_version integer NULL, | ||
categories text NULL, | ||
icon varchar(511) NOT NULL, | ||
license text NULL, | ||
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, | ||
major_version integer NOT NULL, | ||
summary text NOT NULL, | ||
patch_version integer NOT NULL, | ||
is_recommended integer NOT NULL, | ||
example varchar(511) NOT NULL); |
Oops, something went wrong.