Skip to content

Commit fdf982a

Browse files
committed
Fix a bug in the SQL script creates the tables for the community component
1 parent 529a97d commit fdf982a

File tree

5 files changed

+9
-10
lines changed

5 files changed

+9
-10
lines changed

community/community-configuration/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@
1313
Open Source Software ("FLOSS") applications as described in Silverpeas's
1414
FLOSS exception. You should have received a copy of the text describing
1515
the FLOSS exception, and it is also available here:
16-
"http://www.silverpeas.com/legal/licensing"
16+
"https://www.silverpeas.com/legal/licensing"
1717
1818
This program is distributed in the hope that it will be useful,
1919
but WITHOUT ANY WARRANTY; without even the implied warranty of
2020
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2121
GNU Affero General Public License for more details.
2222
2323
You should have received a copy of the GNU Affero General Public License
24-
along with this program. If not, see <http://www.gnu.org/licenses/>.
24+
along with this program. If not, see <https://www.gnu.org/licenses/>.
2525
2626
-->
2727
<project xmlns="http://maven.apache.org/POM/4.0.0"

community/community-configuration/src/main/config/migrations/db/mssql/community/001/create_table.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ CREATE TABLE SC_Community_Membership
2222
lastUpdatedBy VARCHAR(40) NOT NULL,
2323
version BIGINT NOT NULL,
2424
CONSTRAINT FK_COMMUNITY FOREIGN KEY (community) REFERENCES SC_Community (id),
25-
CONSTRAINT FK_USER FOREIGN KEY (community) REFERENCES st_user (id)
25+
CONSTRAINT FK_USER FOREIGN KEY (userId) REFERENCES st_user (id)
2626
);

community/community-library/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@
1313
Open Source Software ("FLOSS") applications as described in Silverpeas's
1414
FLOSS exception. You should have received a copy of the text describing
1515
the FLOSS exception, and it is also available here:
16-
"http://www.silverpeas.com/legal/licensing"
16+
"https://www.silverpeas.com/legal/licensing"
1717
1818
This program is distributed in the hope that it will be useful,
1919
but WITHOUT ANY WARRANTY; without even the implied warranty of
2020
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2121
GNU Affero General Public License for more details.
2222
2323
You should have received a copy of the GNU Affero General Public License
24-
along with this program. If not, see <http://www.gnu.org/licenses/>.
24+
along with this program. If not, see <https://www.gnu.org/licenses/>.
2525
2626
-->
2727
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">

community/community-war/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@
1313
Open Source Software ("FLOSS") applications as described in Silverpeas's
1414
FLOSS exception. You should have received a copy of the text describing
1515
the FLOSS exception, and it is also available here:
16-
"http://www.silverpeas.com/legal/licensing"
16+
"https://www.silverpeas.com/legal/licensing"
1717
1818
This program is distributed in the hope that it will be useful,
1919
but WITHOUT ANY WARRANTY; without even the implied warranty of
2020
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2121
GNU Affero General Public License for more details.
2222
2323
You should have received a copy of the GNU Affero General Public License
24-
along with this program. If not, see <http://www.gnu.org/licenses/>.
24+
along with this program. If not, see <https://www.gnu.org/licenses/>.
2525
2626
-->
2727
<project xmlns="http://maven.apache.org/POM/4.0.0"

community/pom.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@
1313
Open Source Software ("FLOSS") applications as described in Silverpeas's
1414
FLOSS exception. You should have received a copy of the text describing
1515
the FLOSS exception, and it is also available here:
16-
"http://www.silverpeas.com/legal/licensing"
16+
"https://www.silverpeas.com/legal/licensing"
1717
1818
This program is distributed in the hope that it will be useful,
1919
but WITHOUT ANY WARRANTY; without even the implied warranty of
2020
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2121
GNU Affero General Public License for more details.
2222
2323
You should have received a copy of the GNU Affero General Public License
24-
along with this program. If not, see <http://www.gnu.org/licenses/>.
24+
along with this program. If not, see <https://www.gnu.org/licenses/>.
2525
2626
-->
2727
<project xmlns="http://maven.apache.org/POM/4.0.0"
@@ -37,7 +37,6 @@
3737

3838
<groupId>org.silverpeas.components</groupId>
3939
<artifactId>community</artifactId>
40-
<version>6.4-SNAPSHOT</version>
4140
<packaging>pom</packaging>
4241

4342
<name>Silverpeas community Component</name>

0 commit comments

Comments
 (0)