diff --git a/.env.example b/.env.example index ec6628b1b..ec44a1259 100644 --- a/.env.example +++ b/.env.example @@ -1,5 +1,5 @@ APP_NAME=Laravel -APP_ENV=production +APP_ENV=local APP_KEY= APP_DEBUG=true APP_URL=http://localhost diff --git a/packages/Webkul/Core/src/Database/Migrations/2019_02_08_133748_create_currency_code_symbol_table.php b/packages/Webkul/Core/src/Database/Migrations/2019_02_08_133748_create_currency_code_symbol_table.php deleted file mode 100644 index da97e3c60..000000000 --- a/packages/Webkul/Core/src/Database/Migrations/2019_02_08_133748_create_currency_code_symbol_table.php +++ /dev/null @@ -1,38 +0,0 @@ -increments('id'); - $table->string('symbol')->nullable(); - $table->string('name')->nullable(); - $table->string('symbol_native')->nullable(); - $table->string('decimal_digits')->nullable(); - $table->string('rounding')->nullable(); - $table->string('code')->nullable(); - $table->string('name_plural')->nullable(); - $table->timestamps(); - }); - } - - /** - * Reverse the migrations. - * - * @return void - */ - public function down() - { - Schema::dropIfExists('currency_code_symbol'); - } -} diff --git a/packages/Webkul/Core/src/Database/Seeders/CurrenySymbolTableSeeder.php b/packages/Webkul/Core/src/Database/Seeders/CurrenySymbolTableSeeder.php deleted file mode 100644 index 66ba6c885..000000000 --- a/packages/Webkul/Core/src/Database/Seeders/CurrenySymbolTableSeeder.php +++ /dev/null @@ -1,18 +0,0 @@ -delete(); - - $currencies = json_decode(file_get_contents(__DIR__ . '/../../Data/currency_symbols.json'), true); - - DB::table('currency_code_symbol')->insert($currencies); - } -} \ No newline at end of file diff --git a/packages/Webkul/Core/src/Models/CurrencyCodeSymbol.php b/packages/Webkul/Core/src/Models/CurrencyCodeSymbol.php deleted file mode 100644 index d16a46354..000000000 --- a/packages/Webkul/Core/src/Models/CurrencyCodeSymbol.php +++ /dev/null @@ -1,11 +0,0 @@ -