Размер файла: 818B
- <?php
-
- declare(strict_types=1);
-
- use App\Migrations\Migration;
- use Illuminate\Database\Schema\Blueprint;
-
- final class CreateWallsTable extends Migration
- {
- /**
- * Migrate Up.
- */
- public function up(): void
- {
- if (! $this->schema->hasTable('walls')) {
- $this->schema->create('walls', function (Blueprint $table) {
- $table->increments('id');
- $table->integer('user_id');
- $table->integer('author_id');
- $table->text('text');
- $table->integer('created_at');
-
- $table->index('user_id');
- $table->index('created_at');
- });
- }
- }
-
- /**
- * Migrate Down.
- */
- public function down(): void
- {
- $this->schema->dropIfExists('walls');
- }
- }