Просмотр файла database/migrations/20180420180001_create_antimat_table.php
- <?php
- declare(strict_types=1);
- use App\Migrations\Migration;
- use Illuminate\Database\Schema\Blueprint;
- final class CreateAntimatTable extends Migration
- {
- /**
- * Migrate Up.
- */
- public function up(): void
- {
- if (! $this->schema->hasTable('antimat')) {
- $this->schema->create('antimat', function (Blueprint $table) {
- $table->increments('id');
- $table->string('string', 100);
- });
- }
- }
- /**
- * Migrate Down.
- */
- public function down(): void
- {
- $this->schema->dropIfExists('antimat');
- }
- }