mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
Added a migration file to create a description in the api table to start #287
This commit is contained in:
@@ -21,7 +21,7 @@ $config['migration_enabled'] = TRUE;
|
||||
| be upgraded / downgraded to.
|
||||
|
|
||||
*/
|
||||
$config['migration_version'] = 19;
|
||||
$config['migration_version'] = 20;
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
|
||||
19
application/migrations/020_apikeydesc.php
Normal file
19
application/migrations/020_apikeydesc.php
Normal 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');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user