Merge "rdbms: Remove obsolete comment in LoadBalancerSingle"
[lhc/web/wiklou.git] / maintenance / postgres / archives / patch-image_comment_temp-table.sql
1 CREATE TABLE image_comment_temp (
2 imgcomment_name TEXT NOT NULL,
3 imgcomment_description_id INTEGER NOT NULL,
4 PRIMARY KEY (imgcomment_name, imgcomment_description_id)
5 );
6 CREATE UNIQUE INDEX imgcomment_name ON image_comment_temp (imgcomment_name);