Merge pull request #75 from Pear-Trading/master
Master merge for v0.9.6
This commit is contained in:
commit
1fc275022a
6 changed files with 8 additions and 5 deletions
|
@ -2,6 +2,8 @@
|
|||
|
||||
# Next Release
|
||||
|
||||
# v0.9.6
|
||||
|
||||
* **Admin Feature** Merged organisation lists into one list
|
||||
* **Admin Feature** Paginated Organisation listings
|
||||
* **Admin Feature** Added flags to Organisations listings
|
||||
|
@ -13,6 +15,7 @@
|
|||
* **Admin Feature** Enabled merging of organisations to reduce duplicates
|
||||
* **Admin Feature** Added badges to user listing to show whether customer or organisation
|
||||
* **Admin Feature** Added pagination to user listings
|
||||
* Improved logging for debugging issues with login
|
||||
|
||||
# v0.9.5
|
||||
|
||||
|
|
|
@ -39,7 +39,7 @@ __PACKAGE__->add_columns(
|
|||
size => 255,
|
||||
},
|
||||
transaction_id => {
|
||||
data_type => 'varchar',
|
||||
data_type => 'integer',
|
||||
is_foreign_key => 1,
|
||||
is_nullable => 1,
|
||||
},
|
||||
|
|
|
@ -206,7 +206,7 @@ CREATE TABLE "import_values" (
|
|||
"purchase_date" timestamp NOT NULL,
|
||||
"purchase_value" character varying(255) NOT NULL,
|
||||
"org_name" character varying(255) NOT NULL,
|
||||
"transaction_id" character varying,
|
||||
"transaction_id" integer,
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
CREATE INDEX "import_values_idx_set_id" on "import_values" ("set_id");
|
||||
|
|
|
@ -206,7 +206,7 @@ CREATE TABLE "import_values" (
|
|||
"purchase_date" timestamp NOT NULL,
|
||||
"purchase_value" character varying(255) NOT NULL,
|
||||
"org_name" character varying(255) NOT NULL,
|
||||
"transaction_id" character varying,
|
||||
"transaction_id" integer,
|
||||
"ignore_value" boolean DEFAULT false NOT NULL,
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
|
|
@ -220,7 +220,7 @@ CREATE TABLE "import_values" (
|
|||
"purchase_date" timestamp NOT NULL,
|
||||
"purchase_value" character varying(255) NOT NULL,
|
||||
"org_name" character varying(255) NOT NULL,
|
||||
"transaction_id" character varying,
|
||||
"transaction_id" integer,
|
||||
"ignore_value" boolean DEFAULT false NOT NULL,
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
|
|
@ -18,7 +18,7 @@ CREATE TABLE "import_values" (
|
|||
"purchase_date" timestamp NOT NULL,
|
||||
"purchase_value" character varying(255) NOT NULL,
|
||||
"org_name" character varying(255) NOT NULL,
|
||||
"transaction_id" character varying,
|
||||
"transaction_id" integer,
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
CREATE INDEX "import_values_idx_set_id" on "import_values" ("set_id");
|
||||
|
|
Reference in a new issue