File modules/cms/update/version/DBVersion000014.class.php

Last commit: Sun Oct 1 02:58:08 2023 +0200	Jan Dankert	Refactoring: No it is possible to use 8 byte integers in the database
1 <?php 2 3 namespace cms\update\version; 4 5 use database\DbVersion; 6 use database\Column; 7 use security\Password; 8 9 /** 10 * Objects gets new columns for storing the sort order. 11 * 12 * @author dankert 13 * 14 */ 15 class DBVersion000014 extends DbVersion 16 { 17 /** 18 * 19 */ 20 public function update() 21 { 22 $table = $this->table('folder'); 23 $table->column('order_by' )->type(Column::TYPE_INT)->nullable()->add(); 24 $table->column('order_direction')->type(Column::TYPE_INT)->nullable()->add(); 25 } 26 } 27 28 ?>
Download modules/cms/update/version/DBVersion000014.class.php
History Sun, 1 Oct 2023 02:58:08 +0200 Jan Dankert Refactoring: No it is possible to use 8 byte integers in the database Fri, 25 Sep 2020 01:00:58 +0200 Jan Dankert Refactoring: More OO in the database updater :) Sun, 23 Feb 2020 00:30:10 +0100 Jan Dankert Refactoring: Namespacing for module 'database-update', now called 'cms\update'.