FileManager

This commit is contained in:
Kevin Adametz 2020-03-07 19:45:39 +01:00
parent c8948338bb
commit f1e0900a7a
131 changed files with 5844 additions and 3081 deletions

View file

@ -1,36 +0,0 @@
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateTravelProgramTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::connection('mysql_stern')->create('travel_program', function (Blueprint $table) {
$table->increments('id');
$table->string('title');
$table->string('subtitle');
$table->string('program_code');
$table->string('weekdays');
$table->boolean('status')->default('true');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::connection('mysql_stern')->dropIfExists('travel_program');
}
}

View file

@ -1,56 +0,0 @@
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
/**
* Migration auto-generated by Sequel Pro Laravel Export (1.4.1)
* @see https://github.com/cviebrock/sequel-pro-laravel-export
*/
class CreateArrangementTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('arrangement', function (Blueprint $table) {
$table->bigIncrements('id');
$table->bigInteger('template_id')->nullable();
$table->date('state')->nullable();
$table->date('begin')->nullable();
$table->date('end')->nullable();
$table->string('type_s', 80)->nullable();
$table->text('data_s')->nullable();
$table->bigInteger('view_position')->nullable();
$table->bigInteger('booking_id')->nullable();
$table->bigInteger('type_id');
$table->tinyInteger('in_pdf')->nullable()->default(0);
$table->index('template_id', 'arrangement_template_id_idx');
$table->index('booking_id', 'arrangement_booking_id_idx');
$table->foreign('booking_id', 'arrangement_booking_id_booking_id')->references('id')->on('booking')->onDelete('CASCADE
')->onUpdate('RESTRICT');
$table->foreign('template_id', 'arrangement_template_id_arrangement_template_id')->references('id')->on('arrangement_template')->onDelete('CASCADE
')->onUpdate('RESTRICT');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('arrangement');
}
}

View file

@ -21,6 +21,9 @@ class CreateTravelGuidesTable extends Migration
$table->string('text')->nullable();
$table->text('full_text')->nullable();
$table->unsignedBigInteger('author_id')->nullable();
$table->string('keyword')->nullable();
@ -37,6 +40,10 @@ class CreateTravelGuidesTable extends Migration
$table->timestamps();
$table->foreign('author_id')
->references('id')
->on('c_m_s_authors');
});
}

View file

@ -0,0 +1,32 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateKeywordsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::connection('mysql_stern')->create('keywords', function (Blueprint $table) {
$table->bigIncrements('id');
$table->string('name', 255);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::connection('mysql_stern')->dropIfExists('keywords');
}
}

View file

@ -0,0 +1,32 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateCMSAuthorsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::connection('mysql_stern')->create('c_m_s_authors', function (Blueprint $table) {
$table->bigIncrements('id');
$table->string('name', 255);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::connection('mysql_stern')->dropIfExists('c_m_s_authors');
}
}