From 9d67e54fbb0e0398e6affb7f0bdb17b481969e2f Mon Sep 17 00:00:00 2001 From: Bartlomiej Szala Date: Mon, 16 May 2016 22:33:34 +0200 Subject: [PATCH] Add swap currency symbol to currency --- ...5_add_swap_currency_symbol_to_currency.php | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 database/migrations/2016_05_16_102925_add_swap_currency_symbol_to_currency.php diff --git a/database/migrations/2016_05_16_102925_add_swap_currency_symbol_to_currency.php b/database/migrations/2016_05_16_102925_add_swap_currency_symbol_to_currency.php new file mode 100644 index 000000000000..31eafbaf9615 --- /dev/null +++ b/database/migrations/2016_05_16_102925_add_swap_currency_symbol_to_currency.php @@ -0,0 +1,32 @@ +boolean('swap_currency_symbol')->default(false); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table(self::TABLE_NAME,function(Blueprint $table){ + $table->dropColumn('swap_currency_symbol'); + }); + } +}