mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-31 15:42:03 -04:00
28 lines
509 B
PHP
28 lines
509 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
class AddDanishTranslation extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
//DB::table('languages')->insert(['name' => 'Danish', 'locale' => 'da']);
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
//$language = \App\Models\Language::whereLocale('da')->first();
|
|
//$language->delete();
|
|
}
|
|
}
|