Files
timebank-cc-public/database/migrations/2023_02_15_120530_create_languagables.php
Ronald Huynen 2547717edb Initial commit
2026-03-23 21:37:59 +01:00

36 lines
776 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('languagables', function (Blueprint $table) {
$table->id();
$table->integer('language_id');
$table->integer('competence');
$table->string('languagable_type');
$table->unsignedBigInteger('languagable_id');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('languagables');
}
};