openrat-cms

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

DBVersion000017.class.php (498B)


      1 <?php
      2 
      3 namespace cms\update\version;
      4 
      5 use database\Column;
      6 use database\DbVersion;
      7 
      8 /**
      9  * Objects gets new columns for storing valid-dates.
     10  *
     11  * @author dankert
     12  *
     13  */
     14 class DBVersion000017 extends DbVersion
     15 {
     16     /**
     17      *
     18      */
     19     public function update()
     20     {
     21 
     22     	$table = $this->table('object');
     23         $table->column('valid_from')->type(Column::TYPE_INT)->size(0)->nullable()->add();
     24         $table->column('valid_to'  )->type(Column::TYPE_INT)->size(0)->nullable()->add();
     25     }
     26 }
     27