Added a migration file to create a description in the api table to start #287

pull/317/head
Peter Goodhall 2019-06-30 22:26:00 +01:00
rodzic 2641634892
commit d6b447ea1f
2 zmienionych plików z 20 dodań i 1 usunięć

Wyświetl plik

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

Wyświetl plik

@ -0,0 +1,19 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Migration_apikeydesc extends CI_Migration {
public function up()
{
$user_fields = array(
'description VARCHAR(255) DEFAULT NULL'
);
$this->dbforge->add_column('api', $user_fields);
}
public function down()
{
$this->dbforge->drop_column('api', 'description');
}
}