Merge branch '4-new-auth-for-2.0' into 5-improve-job-errors-reporting

This commit is contained in:
amercader 2013-02-05 12:36:26 +00:00
commit 5956e5a9d5
1 changed files with 5 additions and 1 deletions

View File

@ -374,7 +374,7 @@ def migrate_v3():
ALTER TABLE harvest_object
ADD COLUMN import_started timestamp without time zone,
ADD COLUMN import_finished timestamp without time zone,
ADD COLUMN "state" text;
ADD COLUMN "state" text,
ADD COLUMN "report_status" text;
ALTER TABLE harvest_source
@ -398,6 +398,10 @@ UPDATE harvest_source set frequency = 'MANUAL';
ALTER TABLE harvest_object DROP CONSTRAINT harvest_object_package_id_fkey;
ALTER TABLE harvest_object
ADD CONSTRAINT harvest_object_package_id_fkey FOREIGN KEY (package_id) REFERENCES package(id) DEFERRABLE;
ALTER TABLE harvest_object_error
ADD COLUMN line integer;
"""
conn.execute(statement)
Session.commit()