source: database/migrations/2021_10_10_103309_create_files_table.php@ 24a616f

develop
Last change on this file since 24a616f was 24a616f, checked in by Berat Kjufliju <kufliju@…>, 3 years ago

added documents crud, added last_seen_to_user, edited views

  • Property mode set to 100644
File size: 775 bytes
Line 
1<?php
2
3use Illuminate\Database\Migrations\Migration;
4use Illuminate\Database\Schema\Blueprint;
5use Illuminate\Support\Facades\Schema;
6
7class CreateFilesTable extends Migration
8{
9 /**
10 * Run the migrations.
11 *
12 * @return void
13 */
14 public function up()
15 {
16 Schema::create('files', function (Blueprint $table) {
17 $table->bigIncrements('id');
18 $table->bigInteger('document_id')->unsigned()->nullable();
19 $table->string("link");
20 $table->foreign("document_id")->references("id")->on("documents");
21 $table->timestamps();
22 });
23 }
24
25 /**
26 * Reverse the migrations.
27 *
28 * @return void
29 */
30 public function down()
31 {
32 Schema::dropIfExists('files');
33 }
34}
Note: See TracBrowser for help on using the repository browser.