mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 08:56:36 +02:00
Fixing missing , in prefix_blog_instance postgres creation
This commit is contained in:
parent
76de2cdf1a
commit
60f4cbc13a
1 changed files with 1 additions and 1 deletions
|
@ -659,7 +659,7 @@ CREATE TABLE prefix_blog_tag_instance (
|
||||||
tagid integer NOT NULL default 0,
|
tagid integer NOT NULL default 0,
|
||||||
groupid integer NOT NULL default 0,
|
groupid integer NOT NULL default 0,
|
||||||
courseid integer NOT NULL default 0,
|
courseid integer NOT NULL default 0,
|
||||||
userid integer NOT NULL default 0
|
userid integer NOT NULL default 0,
|
||||||
timemodified integer NOT NULL default 0
|
timemodified integer NOT NULL default 0
|
||||||
);
|
);
|
||||||
CREATE INDEX bti_entryid_idx ON prefix_blog_tag_instance (entryid);
|
CREATE INDEX bti_entryid_idx ON prefix_blog_tag_instance (entryid);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue