2019-03-14 23:55:49 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
2019-12-14 11:10:37 +08:00
|
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
|
|
use Illuminate\Support\Facades\Schema;
|
2019-03-14 23:55:49 +08:00
|
|
|
|
|
|
|
class CreateCloset extends Migration
|
|
|
|
{
|
|
|
|
public function up()
|
|
|
|
{
|
|
|
|
Schema::create('user_closet', function (Blueprint $table) {
|
|
|
|
$table->integer('user_uid');
|
|
|
|
$table->integer('texture_tid');
|
|
|
|
$table->text('item_name')->nullable();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
public function down()
|
|
|
|
{
|
|
|
|
Schema::dropIfExists('user_closet');
|
|
|
|
}
|
|
|
|
}
|