%PDF- %PDF-
Direktori : /var/www/html/geotechnics/api/database/migrations/ |
Current File : /var/www/html/geotechnics/api/database/migrations/2019_03_02_124756_create_media_table.php |
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateMediaTable extends Migration { /** * Run the migrations. */ public function up() { Schema::create('media', function (Blueprint $table) { $table->increments('id'); $table->morphs('model'); $table->string('collection_name'); $table->string('name'); $table->string('file_name'); $table->string('mime_type') ->nullable(); $table->string('disk'); $table->unsignedInteger('size'); $table->text('manipulations'); $table->text('custom_properties'); $table->text('responsive_images'); $table->unsignedInteger('order_column') ->nullable(); $table->nullableTimestamps(); }); } /** * Reverse the migrations. */ public function down() { Schema::dropIfExists('media'); } }