This commit is contained in:
70
application/migrations/048_create_blocked_periods_table.php
Normal file
70
application/migrations/048_create_blocked_periods_table.php
Normal file
@@ -0,0 +1,70 @@
|
||||
<?php defined('BASEPATH') or exit('No direct script access allowed');
|
||||
|
||||
/* ----------------------------------------------------------------------------
|
||||
* Easy!Appointments - Online Appointment Scheduler
|
||||
*
|
||||
* @package EasyAppointments
|
||||
* @author A.Tselegidis <alextselegidis@gmail.com>
|
||||
* @copyright Copyright (c) Alex Tselegidis
|
||||
* @license https://opensource.org/licenses/GPL-3.0 - GPLv3
|
||||
* @link https://easyappointments.org
|
||||
* @since v1.4.0
|
||||
* ---------------------------------------------------------------------------- */
|
||||
|
||||
class Migration_Create_blocked_periods_table extends EA_Migration
|
||||
{
|
||||
/**
|
||||
* Upgrade method.
|
||||
*/
|
||||
public function up(): void
|
||||
{
|
||||
if (!$this->db->table_exists('blocked_periods')) {
|
||||
$this->dbforge->add_field([
|
||||
'id' => [
|
||||
'type' => 'INT',
|
||||
'constraint' => 11,
|
||||
'auto_increment' => true,
|
||||
],
|
||||
'create_datetime' => [
|
||||
'type' => 'DATETIME',
|
||||
'null' => true,
|
||||
],
|
||||
'update_datetime' => [
|
||||
'type' => 'DATETIME',
|
||||
'null' => true,
|
||||
],
|
||||
'name' => [
|
||||
'type' => 'VARCHAR',
|
||||
'constraint' => '256',
|
||||
'null' => true,
|
||||
],
|
||||
'start_datetime' => [
|
||||
'type' => 'DATETIME',
|
||||
'null' => true,
|
||||
],
|
||||
'end_datetime' => [
|
||||
'type' => 'DATETIME',
|
||||
'null' => true,
|
||||
],
|
||||
'notes' => [
|
||||
'type' => 'TEXT',
|
||||
'null' => true,
|
||||
],
|
||||
]);
|
||||
|
||||
$this->dbforge->add_key('id', true);
|
||||
|
||||
$this->dbforge->create_table('blocked_periods', true, ['engine' => 'InnoDB']);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Downgrade method.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
if ($this->db->table_exists('blocked_periods')) {
|
||||
$this->dbforge->drop_table('blocked_periods');
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user