| <?php |
| |
| use Illuminate\Database\Migrations\Migration; |
| use Illuminate\Database\Schema\Blueprint; |
| use Illuminate\Support\Facades\Schema; |
| |
| class CreateTaskListsTable extends Migration |
| { |
| |
| |
| |
| |
| |
| public function up() |
| { |
| Schema::create('task_lists', function (Blueprint $table) { |
| |
| $table->bigIncrements('id'); |
| |
| |
| $table->bigInteger('recurrence_id')->unsigned(); |
| $table->foreign('recurrence_id')->references('id')->on('recurrences'); |
| |
| |
| $table->bigInteger('concluding_user_id')->unsigned()->comment('Quem concluiu a atividade'); |
| $table->foreign('concluding_user_id')->references('id')->on('users'); |
| |
| |
| $table->bigInteger('task_type_id')->unsigned(); |
| $table->foreign('task_type_id')->references('id')->on('task_types'); |
| |
| |
| $table->bigInteger('status_id')->unsigned(); |
| $table->foreign('status_id')->references('id')->on('statuses'); |
| |
| $table->integer('number_of_process')->default(1); |
| $table->string('expire_day',2); |
| $table->dateTime('expire_date'); |
| $table->dateTime('start_date')->nullable(); |
| $table->dateTime('end_date')->nullable(); |
| |
| $table->text('details',2000)->nulable(); |
| |
| |
| $table->timestamps(); |
| |
| }); |
| } |
| |
| |
| |
| |
| |
| |
| public function down() |
| { |
| Schema::dropIfExists('task_lists'); |
| } |
| } |