Skip to content

Commit

Permalink
fix symlink table column length
Browse files Browse the repository at this point in the history
Signed-off-by: Pawel Leszczynski <leszczynski.pawel@gmail.com>
  • Loading branch information
pawel-big-lebowski committed Nov 16, 2022
1 parent a7f88b0 commit a8d5895
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

CREATE TABLE dataset_symlinks (
dataset_uuid UUID,
name VARCHAR(255) NOT NULL,
name VARCHAR NOT NULL,
namespace_uuid UUID REFERENCES namespaces(uuid),
type VARCHAR(64),
is_primary BOOLEAN DEFAULT FALSE,
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/* SPDX-License-Identifier: Apache-2.0 */
ALTER TABLE dataset_symlinks ALTER COLUMN name TYPE VARCHAR;

0 comments on commit a8d5895

Please sign in to comment.