diff --git a/database/migrations/2019_09_21_015556_add_language_to_users_table.php b/database/migrations/2019_09_21_015556_add_language_to_users_table.php new file mode 100644 index 000000000..6bbfa8082 --- /dev/null +++ b/database/migrations/2019_09_21_015556_add_language_to_users_table.php @@ -0,0 +1,32 @@ +string('language')->nullable()->index()->after('status'); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('users', function (Blueprint $table) { + $table->dropColumn('language'); + }); + } +}