Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
gilour
/
database
/
migrations
:
2015_09_21_121944_create_emailTemplates_table.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; class CreateEmailTemplatesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('email_templates', function(Blueprint $table) { $table->increments('id'); $table->string('email_id'); $table->text('subject'); $table->text('body'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('email_templates'); } }