save course from disk begin

This commit is contained in:
Александр Бабкин
2022-07-12 16:48:24 +03:00
parent 1f59cda01d
commit d093a31512
7 changed files with 175 additions and 15 deletions

View File

@@ -16,8 +16,9 @@ class CreateAUKsTable extends Migration
Schema::create('auks', function (Blueprint $table) {
$table->id();
$table->integer('project_id')->unsigned();
$table->string('name');
$table->integer('number');
$table->string('auk_name');
$table->string('auk_path');
$table->string('image_dir');
$table->integer('parent_id')->unsigned()->nullable();
$table->timestamps();
$table->softDeletes();