37 lines
741 B
PHP
37 lines
741 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Schema;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
class CreateJournalTables extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
Schema::dropIfExists('gifts');
|
|
|
|
// Schema::create('journal', function (Blueprint $table) {
|
|
// $table->increments('id');
|
|
// $table->integer('account_id');
|
|
// $table->longText('entry');
|
|
// $table->softDeletes();
|
|
// $table->timestamps();
|
|
// });
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
//
|
|
}
|
|
}
|