We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ccf9e62 commit 38bee08Copy full SHA for 38bee08
src/Libraries/Nop.Services/Installation/CodeFirstInstallationService.cs
@@ -514,6 +514,18 @@ protected virtual void InstallCurrencies()
514
CreatedOnUtc = DateTime.UtcNow,
515
UpdatedOnUtc = DateTime.UtcNow,
516
},
517
+ new Currency
518
+ {
519
+ Name = "Indian Rupee",
520
+ CurrencyCode = "INR",
521
+ Rate = 68.21M,
522
+ DisplayLocale = "en-IN",
523
+ CustomFormatting = "",
524
+ Published = false,
525
+ DisplayOrder = 12,
526
+ CreatedOnUtc = DateTime.UtcNow,
527
+ UpdatedOnUtc = DateTime.UtcNow,
528
+ },
529
};
530
_currencyRepository.Insert(currencies);
531
}
0 commit comments