Files
c-cms-legacy/database/migrations/2018_08_01_231647_create_locals_table.php
TheGamecraft 5471539ab3 ALPHA 3.0.1f
2018-08-01 20:32:13 -04:00

33 lines
625 B
PHP

<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateLocalsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('locals', function (Blueprint $table) {
$table->increments('id');
$table->string('name');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('locals');
}
}