Last change
on this file was c6b84df, checked in by beratkjufliju <kufliju@…>, 3 years ago |
added fileTypes controller, notifications, excel export, edited views
|
-
Property mode
set to
100644
|
File size:
797 bytes
|
Rev | Line | |
---|
[24a616f] | 1 | <?php
|
---|
| 2 |
|
---|
| 3 | use Illuminate\Database\Migrations\Migration;
|
---|
| 4 | use Illuminate\Database\Schema\Blueprint;
|
---|
| 5 | use Illuminate\Support\Facades\Schema;
|
---|
| 6 |
|
---|
| 7 | class 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');
|
---|
[c6b84df] | 18 | $table->bigInteger('folder_id')->unsigned();
|
---|
[ea7b12a] | 19 | $table->string("name");
|
---|
| 20 | $table->string("location");
|
---|
[c6b84df] | 21 | $table->foreign("folder_id")->references("id")->on("folders");
|
---|
[24a616f] | 22 | $table->timestamps();
|
---|
| 23 | });
|
---|
| 24 | }
|
---|
| 25 |
|
---|
| 26 | /**
|
---|
| 27 | * Reverse the migrations.
|
---|
| 28 | *
|
---|
| 29 | * @return void
|
---|
| 30 | */
|
---|
| 31 | public function down()
|
---|
| 32 | {
|
---|
| 33 | Schema::dropIfExists('files');
|
---|
| 34 | }
|
---|
| 35 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.