diff --git a/app/database/migrations/2014_12_09_082500_add_fields_maintained_term_to_licenses.php b/app/database/migrations/2014_12_09_082500_add_fields_maintained_term_to_licenses.php new file mode 100644 index 0000000000..21c9269b08 --- /dev/null +++ b/app/database/migrations/2014_12_09_082500_add_fields_maintained_term_to_licenses.php @@ -0,0 +1,34 @@ +date('termination_date')->nullable(); + $table->boolean('maintained'); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('licenses', function ($table) { + $table->dropColumn('termination_date'); + $table->dropColumn('maintained'); + }); + } + +}