Files
nexusphp/database/migrations/2022_01_06_023153_create_medals_table.php
2022-02-12 15:08:18 +08:00

39 lines
920 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateMedalsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('medals', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->integer('get_type');
$table->text('description')->nullable();
$table->string('image_large')->nullable();
$table->string('image_small')->nullable();
$table->integer('price')->default(0);
$table->integer('duration')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('medals');
}
}