12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <?php
- use Illuminate\Support\Facades\Schema;
- use Illuminate\Database\Schema\Blueprint;
- use Illuminate\Database\Migrations\Migration;
- class AddSoftDeleteIndexes extends Migration
- {
- /**
- * Run the migrations.
- *
- * @return void
- */
- public function up()
- {
- Schema::table('avatars', function (Blueprint $table) {
- $table->index('deleted_at','avatars_deleted_at_index');
- });
- Schema::table('profiles', function (Blueprint $table) {
- $table->index('deleted_at','profiles_deleted_at_index');
- });
- Schema::table('mentions', function (Blueprint $table) {
- $table->index('deleted_at','mentions_deleted_at_index');
- });
- Schema::table('likes', function (Blueprint $table) {
- $table->index('deleted_at','likes_deleted_at_index');
- });
- Schema::table('statuses', function (Blueprint $table) {
- $table->index('deleted_at','statuses_deleted_at_index');
- });
- Schema::table('media', function (Blueprint $table) {
- $table->index('deleted_at','media_deleted_at_index');
- });
- Schema::table('notifications', function (Blueprint $table) {
- $table->index('deleted_at','notifications_deleted_at_index');
- });
- Schema::table('users', function (Blueprint $table) {
- $table->index('deleted_at','users_deleted_at_index');
- });
- }
- /**
- * Reverse the migrations.
- *
- * @return void
- */
- public function down()
- {
- Schema::table('avatars', function (Blueprint $table) {
- $table->dropIndex('avatars_deleted_at_index');
- });
- Schema::table('profiles', function (Blueprint $table) {
- $table->dropIndex('profiles_deleted_at_index');
- });
- Schema::table('mentions', function (Blueprint $table) {
- $table->dropIndex('mentions_deleted_at_index');
- });
- Schema::table('likes', function (Blueprint $table) {
- $table->dropIndex('likes_deleted_at_index');
- });
- Schema::table('statuses', function (Blueprint $table) {
- $table->dropIndex('statuses_deleted_at_index');
- });
- Schema::table('media', function (Blueprint $table) {
- $table->dropIndex('media_deleted_at_index');
- });
- Schema::table('notifications', function (Blueprint $table) {
- $table->dropIndex('notifications_deleted_at_index');
- });
- Schema::table('users', function (Blueprint $table) {
- $table->dropIndex('users_deleted_at_index');
- });
- }
- }
|