Added Sections Feature to Survey Asset
This commit is contained in:
parent
3733b39fa5
commit
6ae2995591
5 changed files with 337 additions and 9 deletions
|
|
@ -4,3 +4,5 @@ alter table SyndicatedContent add column hasTerms varchar(255) not null;
|
|||
alter table snippet add column mimeType varchar(50) not null default 'text/html';
|
||||
drop table theme;
|
||||
drop table themeComponent;
|
||||
alter table Survey_question add column Survey_sectionId varchar(22) null;
|
||||
create table Survey_section (Survey_id varchar(22) null, Survey_sectionId varchar(22) not null, sectionName text null, sequenceNumber int(11) not null default 1, primary key (Survey_sectionId));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue