diff --git a/database/migrations/2019_01_11_005556_update_profiles_table.php b/database/migrations/2019_01_11_005556_update_profiles_table.php new file mode 100644 index 000000000..829bedbc4 --- /dev/null +++ b/database/migrations/2019_01_11_005556_update_profiles_table.php @@ -0,0 +1,34 @@ +boolean('unlisted')->default(false)->index()->after('bio'); + $table->boolean('cw')->default(false)->index()->after('unlisted'); + $table->boolean('no_autolink')->default(false)->index()->after('cw'); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + $table->dropColumn('unlisted'); + $table->dropColumn('cw'); + $table->dropColumn('no_autolink'); + } +}