All Downloads are FREE. Search and download functionalities are using the official Maven repository.

db.migration.hsql.V1_014__AddCommentId.sql Maven / Gradle / Ivy

There is a newer version: 1.17.0
Show newest version
alter table "process_comments" ADD COLUMN "id" NUMBER;

create sequence "process_comments_id_sequence";
update "process_comments" set "id" = "process_comments_id_sequence".nextval;

ALTER TABLE "process_comments" ADD CONSTRAINT "process_comments_pk" PRIMARY KEY ("id");




© 2015 - 2024 Weber Informatics LLC | Privacy Policy