1
0
mirror of https://github.com/elyby/accounts.git synced 2025-03-05 07:56:29 +05:30
accounts/console/migrations/m161104_150634_accounts_uuid_index.php

16 lines
295 B
PHP
Raw Normal View History

<?php
use console\db\Migration;
class m161104_150634_accounts_uuid_index extends Migration {
public function safeUp() {
$this->createIndex('uuid', '{{%accounts}}', 'uuid', true);
}
public function safeDown() {
$this->dropColumn('{{%accounts}}', 'uuid');
}
}