[Station Locations] Adds User_ID to station location to assign it to a user

pull/1152/head
Peter Goodhall 2021-08-23 15:39:30 +01:00
rodzic a80089f97c
commit 605395264e
2 zmienionych plików z 21 dodań i 1 usunięć

Wyświetl plik

@ -21,7 +21,7 @@ $config['migration_enabled'] = TRUE;
| be upgraded / downgraded to.
|
*/
$config['migration_version'] = 72;
$config['migration_version'] = 73;
/*
|--------------------------------------------------------------------------

Wyświetl plik

@ -0,0 +1,20 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Migration_add_userid_to_station_profiles extends CI_Migration {
public function up()
{
$fields = array(
'user_id BIGINT(20) DEFAULT NULL',
);
$this->dbforge->add_column('station_profile', $fields);
}
public function down()
{
$this->dbforge->drop_column('station_profile', 'user_id');
}
}