Adding Norwegian to lang table

This commit is contained in:
Hillel Coren 2014-08-31 23:22:47 +03:00
parent 6716f8a3ab
commit 5c7d0a159a

View File

@ -26,6 +26,7 @@ class AddLanguageSupport extends Migration {
DB::table('languages')->insert(['name' => 'Brazilian Portuguese', 'locale' => 'pt_BR']);
DB::table('languages')->insert(['name' => 'Dutch', 'locale' => 'nl']);
DB::table('languages')->insert(['name' => 'Spanish', 'locale' => 'es']);
DB::table('languages')->insert(['name' => 'Norwegian', 'locale' => 'nb_NO']);
Schema::table('accounts', function($table)
{