Skip to content

Commit

Permalink
Release 2024.6
Browse files Browse the repository at this point in the history
  • Loading branch information
dedanirungu committed Sep 3, 2024
1 parent 0be1311 commit 1416c87
Show file tree
Hide file tree
Showing 10 changed files with 254 additions and 2 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "mybizna/smsreader",
"description": "",
"type": "asgard-module",
"version": "2024.5",
"version": "2024.6",
"license": "GPL-3.0-or-later",
"authors": [
{
Expand Down Expand Up @@ -36,4 +36,4 @@
"Modules\\Smsreader\\Tests\\": "tests/"
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<?php

use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::table('smsreader_account', function (Blueprint $table) {
$table->softDeletes();
});
}

/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('smsreader_account', function (Blueprint $table) {
$table->dropColumn('deleted_at');
});
}
};
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<?php

use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::table('smsreader_blacklist', function (Blueprint $table) {
$table->softDeletes();
});
}

/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('smsreader_blacklist', function (Blueprint $table) {
$table->dropColumn('deleted_at');
});
}
};
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<?php

use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::table('smsreader_confirming', function (Blueprint $table) {
$table->softDeletes();
});
}

/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('smsreader_confirming', function (Blueprint $table) {
$table->dropColumn('deleted_at');
});
}
};
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<?php

use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::table('smsreader_format', function (Blueprint $table) {
$table->softDeletes();
});
}

/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('smsreader_format', function (Blueprint $table) {
$table->dropColumn('deleted_at');
});
}
};
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<?php

use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::table('smsreader_incoming', function (Blueprint $table) {
$table->softDeletes();
});
}

/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('smsreader_incoming', function (Blueprint $table) {
$table->dropColumn('deleted_at');
});
}
};
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<?php

use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::table('smsreader_payment', function (Blueprint $table) {
$table->softDeletes();
});
}

/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('smsreader_payment', function (Blueprint $table) {
$table->dropColumn('deleted_at');
});
}
};
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<?php

use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::table('smsreader_requests', function (Blueprint $table) {
$table->softDeletes();
});
}

/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('smsreader_requests', function (Blueprint $table) {
$table->dropColumn('deleted_at');
});
}
};
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<?php

use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::table('smsreader_template', function (Blueprint $table) {
$table->softDeletes();
});
}

/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('smsreader_template', function (Blueprint $table) {
$table->dropColumn('deleted_at');
});
}
};
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<?php

use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::table('smsreader_whitelist', function (Blueprint $table) {
$table->softDeletes();
});
}

/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('smsreader_whitelist', function (Blueprint $table) {
$table->dropColumn('deleted_at');
});
}
};

0 comments on commit 1416c87

Please sign in to comment.