srchub-old

srchub-old Mercurial Source Tree


Root/indefero/src/IDF/Migrations/28OTPKey.php

<?php

function IDF_Migrations_28OTPKey_up()
{
    $table = Pluf::factory('Pluf_User')->getSqlTable();

    $sql = array();

    $sql["MySQL"] = "ALTER TABLE " . $table . " ADD COLUMN `otpkey` VARCHAR(50) NULL AFTER `last_login`;";

    $db = Pluf::db();
    $engine = Pluf::f('db_engine');
    if (!isset($sql[$engine])) {
        throw new Exception('SQLite complex migration not supported.');
    }

    $db->execute($sql[$engine]);

}

function IDF_Migrations_28OTPKey_down()
{
    $table = Pluf::factory('Pluf_User')->getSqlTable();

    $sql = array();

    $sql["MySQL"] = "ALTER TABLE " . $table . " DROP COLUMN `otpkey`;";

    $db = Pluf::db();
    $engine = Pluf::f('db_engine');
    if (!isset($sql[$engine])) {
        throw new Exception('SQLite complex migration not supported.');
    }

    $db->execute($sql[$engine]);
}
Source at commit 13ec43cec797 created 11 years 10 months ago.
By "Nathan Adams ", Updating google analytics in Pluf framework

Archive Download this file

Branches

Tags

Page rendered in 4.06854s using 11 queries.