Fixed upgrades
This commit is contained in:
parent
f147fb34bb
commit
2f16385b53
|
@ -17,6 +17,7 @@ class UpgradeController extends Zend_Controller_Action
|
|||
array_push($upgraders, new AirtimeUpgrader253());
|
||||
array_push($upgraders, new AirtimeUpgrader254());
|
||||
array_push($upgraders, new AirtimeUpgrader255());
|
||||
array_push($upgraders, new AirtimeUpgrader259());
|
||||
|
||||
$didWePerformAnUpgrade = false;
|
||||
try
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
CREATE TABLE cloud_file
|
||||
(
|
||||
id serial NOT NULL,
|
||||
resource_id text NOT NULL,
|
||||
resource_id text NOT NULL default nextval('cloud_file_id_seq'::regclass),
|
||||
cc_file_id integer,
|
||||
CONSTRAINT cloud_file_pkey PRIMARY KEY (id),
|
||||
CONSTRAINT "cloud_file_FK_1" FOREIGN KEY (cc_file_id)
|
||||
|
|
|
@ -260,7 +260,7 @@ class AirtimeUpgrader259 extends AirtimeUpgrader {
|
|||
);
|
||||
}
|
||||
|
||||
protected function getNewVersion() {
|
||||
public function getNewVersion() {
|
||||
return '2.5.9';
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue