1: <?php
2:
3: use Illuminate\Database\Migrations\Migration;
4: use Illuminate\Database\Schema\Blueprint;
5: use Illuminate\Database\Capsule\Manager as Capsule;
6:
7: class CreateRefreshFoldersTable extends Migration
8: {
9: /**
10: * Run the migrations.
11: *
12: * @return void
13: */
14: public function up()
15: {
16: Capsule::schema()->create('mail_refresh_folders', function (Blueprint $table) {
17: $table->increments('Id');
18:
19: $table->integer('IdAccount')->default(0);
20: $table->string('FolderFullName')->default('');
21: $table->boolean('AlwaysRefresh')->default(0);
22:
23: $table->timestamp(\Aurora\System\Classes\Model::CREATED_AT)->nullable();
24: $table->timestamp(\Aurora\System\Classes\Model::UPDATED_AT)->nullable();
25: });
26: }
27:
28: /**
29: * Reverse the migrations.
30: *
31: * @return void
32: */
33: public function down()
34: {
35: Capsule::schema()->dropIfExists('mail_refresh_folders');
36: }
37: }
38: