ALPHA 3.0.3

This commit is contained in:
TheGamecraft
2018-09-08 12:39:49 -04:00
parent d5fe4d6eb6
commit 7fe13ae0a7
88 changed files with 13952 additions and 112 deletions

View File

@@ -17,6 +17,12 @@ class CreateSchedulesTable extends Migration
$table->increments('id');
$table->string('date');
$table->string('type');
$table->string('n1_p1_item')->default('');
$table->string('n1_p2_item')->default('');
$table->string('n2_p1_item')->default('');
$table->string('n2_p2_item')->default('');
$table->string('n3_p1_item')->default('');
$table->string('n3_p2_item')->default('');
$table->text('data');
$table->timestamps();
});

View File

@@ -16,6 +16,7 @@ class CreateLocalsTable extends Migration
Schema::create('locals', function (Blueprint $table) {
$table->increments('id');
$table->string('name');
$table->string('desc');
$table->timestamps();
});
}

View File

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