2018-01-13 22:06:19 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
|
|
|
|
class AddLastUsedAtColumn extends Migration
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Run the migrations.
|
|
|
|
*/
|
2022-11-25 20:29:04 +00:00
|
|
|
public function up(): void
|
2018-01-13 22:06:19 +00:00
|
|
|
{
|
|
|
|
Schema::table('api_keys', function (Blueprint $table) {
|
2018-01-14 18:05:18 +00:00
|
|
|
$table->unsignedTinyInteger('key_type')->after('user_id')->default(0);
|
2018-01-13 22:06:19 +00:00
|
|
|
$table->timestamp('last_used_at')->after('memo')->nullable();
|
|
|
|
$table->dropColumn('expires_at');
|
2018-01-19 03:36:15 +00:00
|
|
|
|
|
|
|
$table->dropForeign(['user_id']);
|
|
|
|
});
|
|
|
|
|
|
|
|
Schema::table('api_keys', function (Blueprint $table) {
|
|
|
|
$table->foreign('user_id')->references('id')->on('users')->onDelete('cascade');
|
2018-01-13 22:06:19 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reverse the migrations.
|
|
|
|
*/
|
2022-11-25 20:29:04 +00:00
|
|
|
public function down(): void
|
2018-01-13 22:06:19 +00:00
|
|
|
{
|
|
|
|
Schema::table('api_keys', function (Blueprint $table) {
|
|
|
|
$table->timestamp('expires_at')->after('memo')->nullable();
|
2018-01-14 18:05:18 +00:00
|
|
|
$table->dropColumn('last_used_at', 'key_type');
|
2018-01-19 03:36:15 +00:00
|
|
|
$table->dropForeign(['user_id']);
|
|
|
|
});
|
|
|
|
|
|
|
|
Schema::table('api_keys', function (Blueprint $table) {
|
|
|
|
$table->foreign('user_id')->references('id')->on('users');
|
2018-01-13 22:06:19 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|