4523: Fix column order to match migration order.
authorTom Clegg <tom@curoverse.com>
Mon, 29 Dec 2014 17:45:02 +0000 (12:45 -0500)
committerTom Clegg <tom@curoverse.com>
Mon, 29 Dec 2014 17:45:02 +0000 (12:45 -0500)
services/api/db/structure.sql

index 2862f0bf01a08915811167c2c586555a4e81620d..038973f9b8f02e44f8840cac5b3a0554b1373dcb 100644 (file)
@@ -685,9 +685,9 @@ CREATE TABLE pipeline_instances (
     properties text,
     state character varying(255),
     components_summary text,
-    description text,
     started_at timestamp without time zone,
-    finished_at timestamp without time zone
+    finished_at timestamp without time zone,
+    description text
 );