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

This commit is contained in:
Peter Goodhall
2019-06-30 22:26:00 +01:00
parent 2641634892
commit d6b447ea1f
2 changed files with 20 additions and 1 deletions

View File

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

View File

@@ -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');
}
}