Schema::create('posts', function ($table) { $table->increments('id'); $table->integer('user_id'); // ... $table->longText('description'); // ... }