|  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 CreateUserBlocksTable extends Migration | 
|  8:  | { | 
|  9:  |      | 
| 10:  |  | 
| 11:  |  | 
| 12:  |  | 
| 13:  |  | 
| 14:  |     public function up() | 
| 15:  |     { | 
| 16:  |         Capsule::schema()->create('core_user_blocks', function (Blueprint $table) { | 
| 17:  |             $table->increments('Id'); | 
| 18:  |             $table->string('Email')->default(''); | 
| 19:  |             $table->string('IpAddress')->default(''); | 
| 20:  |             $table->integer('ErrorLoginsCount')->default(0); | 
| 21:  |             $table->integer('Time')->default(0); | 
| 22:  |             $table->timestamp(\Aurora\System\Classes\Model::CREATED_AT)->nullable(); | 
| 23:  |             $table->timestamp(\Aurora\System\Classes\Model::UPDATED_AT)->nullable(); | 
| 24:  |         }); | 
| 25:  |     } | 
| 26:  |  | 
| 27:  |      | 
| 28:  |  | 
| 29:  |  | 
| 30:  |  | 
| 31:  |  | 
| 32:  |     public function down() | 
| 33:  |     { | 
| 34:  |         Capsule::schema()->dropIfExists('core_user_blocks'); | 
| 35:  |     } | 
| 36:  | } | 
| 37:  |  |