mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-22 16:02:54 +03:00
Use UTC as the default timezone value for all users.
This commit is contained in:
parent
19406ca2c0
commit
db5c2968c6
1 changed files with 2 additions and 12 deletions
|
@ -11,27 +11,17 @@
|
||||||
* @since v1.4.0
|
* @since v1.4.0
|
||||||
* ---------------------------------------------------------------------------- */
|
* ---------------------------------------------------------------------------- */
|
||||||
|
|
||||||
class Migration_Add_add_timezone_columns extends CI_Migration {
|
class Migration_Add_timezone_columns extends CI_Migration {
|
||||||
public function up()
|
public function up()
|
||||||
{
|
{
|
||||||
$this->db->query('
|
|
||||||
ALTER TABLE `ea_appointments`
|
|
||||||
ADD `timezone` VARCHAR(256) NULL AFTER `end_datetime`;
|
|
||||||
');
|
|
||||||
|
|
||||||
$this->db->query('
|
$this->db->query('
|
||||||
ALTER TABLE `ea_users`
|
ALTER TABLE `ea_users`
|
||||||
ADD `timezone` VARCHAR(256) NULL AFTER `notes`;
|
ADD `timezone` VARCHAR(256) DEFAULT "UTC" AFTER `notes`;
|
||||||
');
|
');
|
||||||
}
|
}
|
||||||
|
|
||||||
public function down()
|
public function down()
|
||||||
{
|
{
|
||||||
$this->db->query('
|
|
||||||
ALTER TABLE `ea_appointments`
|
|
||||||
DROP COLUMN `timezone`;
|
|
||||||
');
|
|
||||||
|
|
||||||
$this->db->query('
|
$this->db->query('
|
||||||
ALTER TABLE `ea_users`
|
ALTER TABLE `ea_users`
|
||||||
DROP COLUMN `timezone`;
|
DROP COLUMN `timezone`;
|
||||||
|
|
Loading…
Reference in a new issue