Add topic creation
This commit is contained in:
parent
abcf16497f
commit
13188d49a1
15 changed files with 5315 additions and 35 deletions
17
share/ddl/SQLite/upgrade/33-34/001-auto.sql
Normal file
17
share/ddl/SQLite/upgrade/33-34/001-auto.sql
Normal file
|
@ -0,0 +1,17 @@
|
|||
-- Convert schema 'share/ddl/_source/deploy/33/001-auto.yml' to 'share/ddl/_source/deploy/34/001-auto.yml':;
|
||||
|
||||
;
|
||||
BEGIN;
|
||||
|
||||
;
|
||||
ALTER TABLE topics ADD COLUMN organisation_id integer;
|
||||
|
||||
;
|
||||
CREATE INDEX topics_idx_organisation_id ON topics (organisation_id);
|
||||
|
||||
;
|
||||
|
||||
;
|
||||
|
||||
COMMIT;
|
||||
|
Reference in a new issue