kuvia/database/migrations/2021_01_12_104042_traffic.php

44 lines
1021 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class Traffic extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create("traffic", function (Blueprint $table) {
$table->id();
$table->timestamps();
$table->smallInteger("year");
$table->tinyInteger("month");
$table->tinyInteger("day");
$table->tinyInteger("hour");
$table->date("date");
$table->unsignedBigInteger("tenant");
$table->unsignedBigInteger("gallery");
$table->bigInteger("traffic");
$table->foreign('gallery')->references('id')->on('galleries');
$table->foreign('tenant')->references('id')->on('tenants');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
}