Files
monica/database/migrations/2016_10_24_014257_create_journal_tables.php
T
2017-02-16 19:21:44 -05:00

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()
{
//
}
}