id(); $table->string('title'); $table->text('description')->nullable(); $table->string('gif_path'); // Путь к GIF-файлу $table->timestamps(); }); } public function down() { Schema::dropIfExists('exercises'); } };