mirror of
https://github.com/flarum/core.git
synced 2025-08-06 16:36:47 +02:00
Ensure that migrations run
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace Flarum\Testing;
|
||||
|
||||
use Flarum\Database\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
|
||||
return Migration::createTable('testing_table', function (Blueprint $table) {
|
||||
$table->string('id', 100)->primary();
|
||||
});
|
Reference in New Issue
Block a user