File "2015_09_21_121944_create_emailTemplates_table.php"
Full Path: /home/isoftco/public_html/hrm/database/migrations/2015_09_21_121944_create_emailTemplates_table.php
File size: 572 bytes
MIME-type: text/x-php
Charset: utf-8
<?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');
}
}