0f6260f358
- add migrations for message class - load messages into vue form for dataset publishing - check unique email of authors during dataset creation - adaptions in create-step1.blade.php for tooltip colors - updated package.json
34 lines
687 B
PHP
34 lines
687 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Schema;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
class CreateMessagesTable extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
Schema::create('messages', function (Blueprint $table) {
|
|
$table->increments('id');
|
|
$table->string('metadata_element', 255);
|
|
$table->text('help_text');
|
|
$table->timestamps();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::dropIfExists('messages');
|
|
}
|
|
}
|