Add homepage
This commit is contained in:
@@ -0,0 +1,38 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
|
||||
class CreateShopHomepagesTable extends Migration {
|
||||
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
Schema::create('shop_homepages', function(Blueprint $table)
|
||||
{
|
||||
$table->increments('id');
|
||||
$table->text('text');
|
||||
$table->unsignedSmallInteger('created_by')->nullable();
|
||||
$table->unsignedSmallInteger('updated_by')->nullable();
|
||||
$table->unsignedSmallInteger('deleted_by')->nullable();
|
||||
$table->timestamps();
|
||||
$table->softDeletes();
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::drop('shop_homepages');
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user