#rev 285 alter table teke_questions add column margin_top INT(6) DEFAULT 0; alter table teke_questions add column margin_bottom INT(6) DEFAULT 0; alter table teke_questions add column position int(4); alter table teke_questions add column text_before TINYINT(1) DEFAULT 0; alter table teke_questions add column use_question_title BOOLEAN DEFAULT TRUE; alter table teke_choices add column pos int(4); alter table psyhvel_questions modify column text_pos TINYINT(1) DEFAULT 1; alter table psyhvel_image_drag_task add column task_instructions TEXT; alter table psyhvel_image_drag_task add column text_instructions TEXT; alter table psyhvel_image_drag_task add column text_input TEXT; alter table psyhvel_image_drag_task add column answer_required BOOLEAN DEFAULT FALSE; alter table psyhvel_image_drag_task add column text_title TEXT; alter table psyhvel_image_drag_task add column text_input BOOLEAN DEFAULT FALSE; alter table psyhvel_image_drag_task add column text_value TEXT; alter table psyhvel_image_drag_task add column text_rows TINYINT(4) DEFAULT 3; alter table psyhvel_image_drag_task add column text_cols TINYINT(4) DEFAULT 25; alter table psyhvel_image_drag_task add column text_charcount INT(11) DEFAULT 0; alter table psyhvel_image_drag_task add column text_charcounter BOOLEAN DEFAULT FALSE; #rev 641 alter table psyhvel_image_drag_task add column element_size TINYINT(4) DEFAULT 1; alter table psyhvel_image_drag_answer add column textfield TEXT; alter table psyhvel_test_folder_cache add UNIQUE (test_folder); alter table psyhvel_test_folder add column folder bigint(20) UNSIGNED DEFAULT NULL; alter table psyhvel_test_folder add FOREIGN KEY (folder) REFERENCES psyhvel_folder (id) ON DELETE SET NULL; alter table psyhvel_test_folder add column type char(255) NOT NULL DEFAULT 'TestFolder';