mirror of
https://github.com/elyby/accounts.git
synced 2024-11-06 16:21:08 +05:30
32 lines
946 B
PHP
32 lines
946 B
PHP
<?php
|
|
|
|
use console\db\Migration;
|
|
|
|
class m161222_222520_remove_oauth_access_tokens extends Migration {
|
|
|
|
public function safeUp() {
|
|
$this->dropForeignKey('FK_oauth_access_toke_to_oauth_session', '{{%oauth_access_tokens}}');
|
|
$this->dropTable('{{%oauth_access_tokens}}');
|
|
}
|
|
|
|
public function safeDown() {
|
|
$this->createTable('{{%oauth_access_tokens}}', [
|
|
'access_token' => $this->string(64),
|
|
'session_id' => $this->getDb()->getTableSchema('{{%oauth_sessions}}')->getColumn('id')->dbType,
|
|
'expire_time' => $this->integer()->notNull(),
|
|
$this->primary('access_token'),
|
|
], $this->tableOptions);
|
|
|
|
$this->addForeignKey(
|
|
'FK_oauth_access_toke_to_oauth_session',
|
|
'{{%oauth_access_tokens}}',
|
|
'session_id',
|
|
'{{%oauth_sessions}}',
|
|
'id',
|
|
'CASCADE',
|
|
'SET NULL'
|
|
);
|
|
}
|
|
|
|
}
|