[Rt-commit] rt branch, master, updated. rt-4.1.19-83-g618c308
Alex Vandiver
alexmv at bestpractical.com
Thu Aug 29 17:12:35 EDT 2013
The branch, master has been updated
via 618c3083b27e5e92a8142b617df60bdf51ee8d31 (commit)
from e2f6a26816230926f945abd78af255f245d3c5f3 (commit)
Summary of changes:
etc/upgrade/4.1.1/schema.Oracle | 1 -
etc/upgrade/4.1.1/schema.Pg | 1 -
etc/upgrade/4.1.1/schema.SQLite | 1 -
etc/upgrade/4.1.1/schema.mysql | 1 -
4 files changed, 4 deletions(-)
- Log -----------------------------------------------------------------
commit 618c3083b27e5e92a8142b617df60bdf51ee8d31
Author: Alex Vandiver <alexmv at bestpractical.com>
Date: Thu Aug 29 17:07:27 2013 -0400
Drop the Disabled column from the ObjectScrips upgrade step
The table as created by etc/schema.* does not include a Disabled column,
as it was removed during development. Remove it from the corresponding
upgrade step.
diff --git a/etc/upgrade/4.1.1/schema.Oracle b/etc/upgrade/4.1.1/schema.Oracle
index b4aac9d..180cf0c 100644
--- a/etc/upgrade/4.1.1/schema.Oracle
+++ b/etc/upgrade/4.1.1/schema.Oracle
@@ -6,7 +6,6 @@ CREATE TABLE ObjectScrips (
Stage VARCHAR2(32) DEFAULT 'TransactionCreate' NOT NULL,
ObjectId NUMBER(11,0) NOT NULL,
SortOrder NUMBER(11,0) DEFAULT 0 NOT NULL,
- Disabled NUMBER(11,0) DEFAULT 0 NOT NULL,
Creator NUMBER(11,0) DEFAULT 0 NOT NULL,
Created DATE,
LastUpdatedBy NUMBER(11,0) DEFAULT 0 NOT NULL,
diff --git a/etc/upgrade/4.1.1/schema.Pg b/etc/upgrade/4.1.1/schema.Pg
index 9716c5f..25fe3c1 100644
--- a/etc/upgrade/4.1.1/schema.Pg
+++ b/etc/upgrade/4.1.1/schema.Pg
@@ -6,7 +6,6 @@ CREATE TABLE ObjectScrips (
Stage varchar(32) NOT NULL DEFAULT 'TransactionCreate' ,
ObjectId integer NOT NULL,
SortOrder integer NOT NULL DEFAULT 0 ,
- Disabled integer NOT NULL DEFAULT 0 ,
Creator integer NOT NULL DEFAULT 0 ,
Created TIMESTAMP NULL ,
diff --git a/etc/upgrade/4.1.1/schema.SQLite b/etc/upgrade/4.1.1/schema.SQLite
index 24e0933..a3a34f0 100644
--- a/etc/upgrade/4.1.1/schema.SQLite
+++ b/etc/upgrade/4.1.1/schema.SQLite
@@ -5,7 +5,6 @@ CREATE TABLE ObjectScrips (
Stage varchar(32) NOT NULL DEFAULT 'TransactionCreate' ,
ObjectId integer NOT NULL,
SortOrder integer NOT NULL DEFAULT 0 ,
- Disabled int2 NOT NULL DEFAULT 0 ,
Creator integer NOT NULL DEFAULT 0 ,
Created DATETIME NULL ,
diff --git a/etc/upgrade/4.1.1/schema.mysql b/etc/upgrade/4.1.1/schema.mysql
index 2656c63..d285019 100644
--- a/etc/upgrade/4.1.1/schema.mysql
+++ b/etc/upgrade/4.1.1/schema.mysql
@@ -4,7 +4,6 @@ CREATE TABLE ObjectScrips (
Stage varchar(32) CHARACTER SET ascii NOT NULL DEFAULT 'TransactionCreate',
ObjectId integer NOT NULL,
SortOrder integer NOT NULL DEFAULT 0 ,
- Disabled int2 NOT NULL DEFAULT 0 ,
Creator integer NOT NULL DEFAULT 0 ,
Created DATETIME NULL ,
-----------------------------------------------------------------------
More information about the Rt-commit
mailing list