invoiceninja/database/migrations/2014_10_14_225227_add_danish_translation.php

28 lines
509 B
PHP
Raw Normal View History

2015-03-17 07:45:25 +10:00
<?php
use Illuminate\Database\Migrations\Migration;
2017-01-30 18:05:31 +02:00
class AddDanishTranslation extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
//DB::table('languages')->insert(['name' => 'Danish', 'locale' => 'da']);
}
2015-03-17 07:45:25 +10:00
2017-01-30 18:05:31 +02:00
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//$language = \App\Models\Language::whereLocale('da')->first();
2017-01-30 18:05:31 +02:00
//$language->delete();
}
2015-03-17 07:45:25 +10:00
}