add 1st place
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
|
||||
/**
|
||||
* Class CreateAttachmentsTable.
|
||||
*/
|
||||
class CreateAttachmentsTable extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
Schema::create('attachments', function(Blueprint $table) {
|
||||
$table->increments('id');
|
||||
$table->unsignedInteger('document_id');
|
||||
$table->string('name');
|
||||
$table->string('extension');
|
||||
$table->decimal('size', 5, 2);
|
||||
$table->text('path');
|
||||
$table->unsignedInteger('downloads')->default(0);
|
||||
$table->timestamps();
|
||||
|
||||
$table->foreign('document_id')
|
||||
->references('id')
|
||||
->on('documents')
|
||||
->onUpdate('cascade')
|
||||
->onDelete('cascade');
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::drop('attachments');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user