diff --git a/database/migrations/2018_12_30_065102_update_profiles_table_use_text_for_bio.php b/database/migrations/2018_12_30_065102_update_profiles_table_use_text_for_bio.php new file mode 100644 index 000000000..96443631a --- /dev/null +++ b/database/migrations/2018_12_30_065102_update_profiles_table_use_text_for_bio.php @@ -0,0 +1,32 @@ +text('bio')->nullable()->change(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('profiles', function (Blueprint $table) { + $table->string('bio')->nullable()->change(); + }); + } +}