Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Marcus Andersson
aurweb
Commits
59055776
Commit
59055776
authored
Feb 10, 2011
by
Lukas Fleischer
Browse files
Use VARCHAR instead of CHAR in "PackageBlacklist" table.
Signed-off-by:
Lukas Fleischer
<
archlinux@cryptocrack.de
>
parent
a64cd12f
Changes
2
Hide whitespace changes
Inline
Side-by-side
UPGRADING
View file @
59055776
...
...
@@ -29,7 +29,7 @@ ALTER TABLE TU_VoteInfo
MODIFY
User
VARCHAR
(
32
)
collate
latin1_general_ci
NOT
NULL
;
CREATE
TABLE
PackageBlacklist
(
ID
INTEGER
UNSIGNED
NOT
NULL
AUTO_INCREMENT
,
Name
CHAR
(
64
)
NOT
NULL
,
Name
VAR
CHAR
(
64
)
NOT
NULL
,
PRIMARY
KEY
(
ID
),
UNIQUE
(
Name
)
);
...
...
support/schema/aur-schema.sql
View file @
59055776
...
...
@@ -181,7 +181,7 @@ CREATE UNIQUE INDEX NotifyUserIDPkgID ON CommentNotify (UserID, PkgID);
--
CREATE
TABLE
PackageBlacklist
(
ID
INTEGER
UNSIGNED
NOT
NULL
AUTO_INCREMENT
,
Name
CHAR
(
64
)
NOT
NULL
,
Name
VAR
CHAR
(
64
)
NOT
NULL
,
PRIMARY
KEY
(
ID
),
UNIQUE
(
Name
)
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment