upgrade_video_script_task.sql 537 B

1234567891011121314
  1. alter table video_script_task
  2. add column if not exists video_urls text null after video_url;
  3. alter table video_script_task
  4. add column if not exists prompt_hint text null after status;
  5. alter table video_script_task
  6. add column if not exists analysis_content text null after video_content;
  7. alter table video_script_task
  8. add column if not exists omni_content text null after video_content;
  9. alter table video_script_task
  10. add column if not exists use_omni_analysis tinyint(1) not null default 0 after codedesk_task_id;