Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin
{numberedheadings:
Numbered Headings
Wiki Markup
start-numbering-ath2

Version

=h2} h1. Version

0.9.1

to

0.9.2

h2. Add new directives to configuration file Add these two directives to {{

Add new directives to configuration file

Add these two directives to application/configs/application.ini

}}

:

{

Code Block
:
lang
=
php
}

core.review.tiebreaker = 0.13
core.observer.tiebreaker.notify = 1
{code} h2. Run SQL changes Apply this patch to your CORE database: {code:sql}

Run SQL changes

Apply this patch to your CORE database:

Code Block
sql
sql


CREATE TABLE reviewbreaker (
    submission_id INTEGER NOT NULL,
    evalue REAL NOT NULL,
    CONSTRAINT reviewbreaker_pkey PRIMARY KEY(submission_id),
    CONSTRAINT reviewbreaker_submission_id_fk1
    FOREIGN KEY (submission_id)
    REFERENCES submissions(submission_id)
    ON DELETE CASCADE
    ON UPDATE NO ACTION
    NOT DEFERRABLE
) WITHOUT OIDS;


ALTER TABLE reviewers_submissions
    ADD COLUMN tiebreaker
    BOOLEAN
    DEFAULT false
    NOT NULL;
{code} h2. Update code In case you are running

Update code

In case you are running branches/core-0.9

(recommended),

or

trunk

(not

recommended)

you

can

just

do

{{

svn

up

}}

..


In

case

you

run

tags/core-0.9.1,

you

can

do:

{

Code Block
}

svn switch https://terena-core.googlecode.com/svn/tags/core-0.9.2
{code} {numberedheadings}