Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
4d248534
Commit
4d248534
authored
Sep 23, 2004
by
Steven Wittens
Browse files
Fixing stray comma in database.*sql
parent
db24d26d
Changes
2
Hide whitespace changes
Inline
Side-by-side
database/database.mysql
View file @
4d248534
...
...
@@ -12,7 +12,7 @@ CREATE TABLE access (
mask varchar(255) NOT NULL default '',
type varchar(255) NOT NULL default '',
status tinyint(2) NOT NULL default '0',
PRIMARY KEY (aid)
,
PRIMARY KEY (aid)
) TYPE=MyISAM;
--
...
...
database/database.pgsql
View file @
4d248534
...
...
@@ -10,7 +10,7 @@ CREATE TABLE access (
mask varchar(255) NOT NULL default '',
type varchar(255) NOT NULL default '',
status smallint NOT NULL default '0',
PRIMARY KEY (aid)
,
PRIMARY KEY (aid)
);
--
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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