Update histori file MCU
This commit is contained in:
@@ -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');
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user