diff --git a/database/migrations/2015_12_08_222131_add_timestamps_services.php b/database/migrations/2015_12_08_222131_add_timestamps_services.php new file mode 100644 index 000000000..e9455a132 --- /dev/null +++ b/database/migrations/2015_12_08_222131_add_timestamps_services.php @@ -0,0 +1,32 @@ +timestamps(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('services', function (Blueprint $table) { + $table->dropColumn('created_at'); + $table->dropColumn('updated_at'); + }); + } +} diff --git a/database/migrations/2015_12_08_222146_add_timestamps_service_options.php b/database/migrations/2015_12_08_222146_add_timestamps_service_options.php new file mode 100644 index 000000000..7749b555c --- /dev/null +++ b/database/migrations/2015_12_08_222146_add_timestamps_service_options.php @@ -0,0 +1,32 @@ +timestamps(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('service_options', function (Blueprint $table) { + $table->dropColumn('created_at'); + $table->dropColumn('updated_at'); + }); + } +} diff --git a/database/migrations/2015_12_08_222200_add_timestamps_service_variables.php b/database/migrations/2015_12_08_222200_add_timestamps_service_variables.php new file mode 100644 index 000000000..e2bcfc2b8 --- /dev/null +++ b/database/migrations/2015_12_08_222200_add_timestamps_service_variables.php @@ -0,0 +1,32 @@ +timestamps(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('service_variables', function (Blueprint $table) { + $table->dropColumn('created_at'); + $table->dropColumn('updated_at'); + }); + } +} diff --git a/database/migrations/2015_12_08_222213_add_timestamps_server_variables.php b/database/migrations/2015_12_08_222213_add_timestamps_server_variables.php new file mode 100644 index 000000000..11c91a34d --- /dev/null +++ b/database/migrations/2015_12_08_222213_add_timestamps_server_variables.php @@ -0,0 +1,32 @@ +timestamps(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('server_variables', function (Blueprint $table) { + $table->dropColumn('created_at'); + $table->dropColumn('updated_at'); + }); + } +}