forked from s421507/eOSP2
Krzysztof Strzelecki
d7603c07fd
# Conflicts: # .idea/workspace.xml Signed-off-by: Krzysztof Strzelecki <ks37365@st.amu.edu.pl>
32 lines
588 B
PHP
32 lines
588 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Schema;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
class CreateRanksTable extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
Schema::create('ranks', function (Blueprint $table) {
|
|
$table->increments('id');
|
|
$table->string('rank');
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::dropIfExists('ranks');
|
|
}
|
|
}
|