Update histori file MCU

This commit is contained in:
ivan
2023-07-20 16:52:08 +07:00
parent 4c8570b542
commit 59c56ae90f
5 changed files with 41 additions and 14 deletions

View File

@@ -13,12 +13,13 @@ return new class extends Migration
*/
public function up()
{
Schema::create('filesmcu', function (Blueprint $table) {
Schema::create('files_mcu', function (Blueprint $table) {
$table->increments('id');
$table->integer('member_id');
$table->string('path');
$table->integer('created_by');
$table->integer('updated_by')->default(0);
$table->bigInteger('memberid');
$table->string('original_name', 255);
$table->string('path', 255);
$table->bigInteger('created_by');
$table->bigInteger('updated_by');
$table->timestamps();
});
}
@@ -30,6 +31,6 @@ return new class extends Migration
*/
public function down()
{
Schema::dropIfExists('filesmcu');
Schema::dropIfExists('files_mcu');
}
};