Index: kernel/classes/datatypes/ezobjectrelationlist/ezobjectrelationlisttype.php
===================================================================
--- kernel/classes/datatypes/ezobjectrelationlist/ezobjectrelationlisttype.php	(revision 25351)
+++ kernel/classes/datatypes/ezobjectrelationlist/ezobjectrelationlisttype.php	(working copy)
@@ -476,7 +476,6 @@
                         $object->setAttribute( 'published', $time );
                     $object->setAttribute( 'modified', $time );
                     $object->setAttribute( 'current_version', $version->attribute( 'version' ) );
-                    $object->setAttribute( 'is_published', true );
                     $objectName = $class->contentObjectName( $object, $version->attribute( 'version' ) );
                     $object->setName( $objectName, $version->attribute( 'version' ) );
                     $object->store();
Index: kernel/classes/ezcontentobject.php
===================================================================
--- kernel/classes/ezcontentobject.php	(revision 25351)
+++ kernel/classes/ezcontentobject.php	(working copy)
@@ -126,10 +126,6 @@
                                                           'datatype' => 'string',
                                                           'default' => '',
                                                           'required' => true ),
-                                         "is_published" => array( 'name' => "IsPublished",
-                                                                  'datatype' => 'integer',
-                                                                  'default' => 0,
-                                                                  'required' => true ),
                                          "published" => array( 'name' => "Published",
                                                                'datatype' => 'integer',
                                                                'default' => 0,
Index: update/database/postgresql/4.4/unstable/dbupdate-4.4.0alpha2-to-4.4.0alpha3.sql
===================================================================
--- update/database/postgresql/4.4/unstable/dbupdate-4.4.0alpha2-to-4.4.0alpha3.sql	(revision 25351)
+++ update/database/postgresql/4.4/unstable/dbupdate-4.4.0alpha2-to-4.4.0alpha3.sql	(working copy)
@@ -1,2 +1,4 @@
 UPDATE ezsite_data SET value='4.4.0alpha3' WHERE name='ezpublish-version';
 UPDATE ezsite_data SET value='1' WHERE name='ezpublish-release';
+
+ALTER TABLE ezcontentobject DROP COLUMN is_published;
Index: update/database/mysql/4.4/unstable/dbupdate-4.4.0alpha2-to-4.4.0alpha3.sql
===================================================================
--- update/database/mysql/4.4/unstable/dbupdate-4.4.0alpha2-to-4.4.0alpha3.sql	(revision 25351)
+++ update/database/mysql/4.4/unstable/dbupdate-4.4.0alpha2-to-4.4.0alpha3.sql	(working copy)
@@ -1,3 +1,5 @@
 SET storage_engine=InnoDB;
 UPDATE ezsite_data SET value='4.4.0alpha3' WHERE name='ezpublish-version';
 UPDATE ezsite_data SET value='1' WHERE name='ezpublish-release';
+
+ALTER TABLE ezcontentobject DROP COLUMN is_published;
