33 lines
617 B
PHP
33 lines
617 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
class About extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
Schema::create('about', function(Blueprint $table) {
|
|
$table->increments('id');
|
|
$table->longText('content');
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::table('about', function (Blueprint $table) {
|
|
$table->dropColumn('about');
|
|
});
|
|
}
|
|
}
|