bigIncrements('id'); $table->string('name', 11); $table->unsignedTinyInteger('all'); $table->text('all_desc'); $table->unsignedTinyInteger('love'); $table->text('love_desc'); $table->unsignedTinyInteger('career'); $table->text('career_desc'); $table->unsignedTinyInteger('income'); $table->text('income_desc'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('constellations'); } }