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