-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: increase character limit for mention title
- Loading branch information
1 parent
1438562
commit 7c56679
Showing
2 changed files
with
17 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
-- SPDX-FileCopyrightText: 2021 - 2023 Ewan Cahen (Netherlands eScience Center) <[email protected]> | ||
-- SPDX-FileCopyrightText: 2021 - 2023 Netherlands eScience Center | ||
-- SPDX-FileCopyrightText: 2021 - 2024 Ewan Cahen (Netherlands eScience Center) <[email protected]> | ||
-- SPDX-FileCopyrightText: 2021 - 2024 Netherlands eScience Center | ||
-- SPDX-FileCopyrightText: 2022 Dusan Mijatovic (dv4all) | ||
-- SPDX-FileCopyrightText: 2022 dv4all | ||
-- | ||
|
@@ -32,7 +32,7 @@ CREATE TABLE mention ( | |
doi CITEXT UNIQUE CHECK (doi ~ '^10(\.\w+)+/\S+$' AND LENGTH(doi) <= 255), | ||
doi_registration_date TIMESTAMPTZ, | ||
url VARCHAR(500) CHECK (url ~ '^https?://'), | ||
title VARCHAR(500) NOT NULL, | ||
title VARCHAR(3000) NOT NULL, | ||
authors VARCHAR(50000), | ||
publisher VARCHAR(255), | ||
publication_year SMALLINT, | ||
|
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