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

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

There is a newer version: 1.17.0
Show newest version
ALTER TABLE "process_attachments" ADD COLUMN "new_id" INTEGER GENERATED BY DEFAULT AS IDENTITY(START WITH 1, INCREMENT BY 1);
ALTER TABLE "process_attachments" DROP PRIMARY KEY;
ALTER TABLE "process_attachments" DROP COLUMN "id";
ALTER TABLE "process_attachments" ALTER COLUMN "new_id" RENAME TO "id";
ALTER TABLE "process_attachments" ADD PRIMARY KEY ("id");





© 2015 - 2024 Weber Informatics LLC | Privacy Policy