Turning on migration, adding a migration to add lotw credentials to the database, and removing a sample migration.

This commit is contained in:
Corby Krick
2013-02-24 17:58:36 -06:00
parent 94603ca9b4
commit 266cd3f021
3 changed files with 23 additions and 34 deletions

View File

@@ -0,0 +1,21 @@
<?php defined('BASEPATH') OR exit('No direct script access allowed');
class Migration_add_lotw_credentials extends CI_Migration {
public function up()
{
$fields = array(
'user_lotw_name VARCHAR(32) DEFAULT NULL',
'user_lotw_password VARCHAR(64) DEFAULT NULL'
);
$this->dbforge->add_column('users', $fields);
}
public function down()
{
$this->dbforge->drop_column('users', 'user_lotw_name');
$this->dbforge->drop_column('users', 'user_lotw_password');
}
}
?>