Files
faveo/database/migrations/2016_06_02_090628_create_templates_table.php
2016-06-13 20:41:55 +05:30

38 lines
822 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
class CreateTemplatesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('templates', function (Blueprint $table) {
$table->increments('id');
$table->string('name');
$table->string('variable');
$table->integer('type');
$table->string('subject');
$table->text('message');
$table->string('description');
$table->integer('set_id');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('templates');
}
}