Files
faveo/database/migrations/2015_05_06_120651_create_ticket_table.php
2015-12-22 14:09:23 +05:30

55 lines
1.3 KiB
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
class CreateTicketTable extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up() {
Schema::create('tickets', function (Blueprint $table) {
$table->increments('id');
$table->string('ticket_number');
$table->integer('user_id');
$table->integer('dept_id');
$table->integer('team_id');
$table->integer('priority_id');
$table->integer('sla');
$table->integer('help_topic_id');
$table->integer('status');
$table->integer('flags');
$table->integer('ip_address');
$table->integer('assigned_to');
$table->integer('lock_by');
$table->integer('lock_at');
$table->integer('source');
$table->integer('isoverdue');
$table->integer('reopened');
$table->integer('isanswered');
$table->integer('html');
$table->integer('is_deleted');
$table->integer('closed');
$table->dateTime('reopened_at')->nullable();
$table->dateTime('duedate')->nullable();
$table->dateTime('closed_at')->nullable();
$table->dateTime('last_message_at')->nullable();
$table->dateTime('last_response_at')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down() {
Schema::drop('tickets');
}
}