diff --git a/database/migrations/2019_06_20_092004_add_column_burn_after.php b/database/migrations/2019_06_20_092004_add_column_burn_after.php new file mode 100644 index 0000000..e6dd739 --- /dev/null +++ b/database/migrations/2019_06_20_092004_add_column_burn_after.php @@ -0,0 +1,32 @@ +boolean('burnAfter'); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('pastes', function (Blueprint $table) { + $table->dropColumn('burnAfter'); + }); + } +}