| 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 CreateUsedDevicesTable extends Migration |
| 8: | { |
| 9: | |
| 10: | |
| 11: | |
| 12: | |
| 13: | |
| 14: | public function up() |
| 15: | { |
| 16: | Capsule::schema()->create('security_used_devices', function (Blueprint $table) { |
| 17: | $table->id('Id'); |
| 18: | $table->bigInteger('UserId')->default(0); |
| 19: | $table->string('DeviceId')->default(''); |
| 20: | $table->string('DeviceName')->default(''); |
| 21: | $table->text('AuthToken'); |
| 22: | $table->integer('CreationDateTime')->default(0); |
| 23: | $table->integer('LastUsageDateTime')->default(0); |
| 24: | $table->integer('TrustTillDateTime')->default(0); |
| 25: | $table->string('DeviceIP')->default(''); |
| 26: | $table->timestamp(\Aurora\System\Classes\Model::CREATED_AT)->nullable(); |
| 27: | $table->timestamp(\Aurora\System\Classes\Model::UPDATED_AT)->nullable(); |
| 28: | }); |
| 29: | } |
| 30: | |
| 31: | |
| 32: | |
| 33: | |
| 34: | |
| 35: | |
| 36: | public function down() |
| 37: | { |
| 38: | Capsule::schema()->dropIfExists('security_used_devices'); |
| 39: | } |
| 40: | } |
| 41: | |