Compare commits

...

2 Commits

Author SHA1 Message Date
Václav Španinger 27e9ef9f27 Git ignore: VS Code Config Foler 2021-01-08 10:10:27 +01:00
Václav Španinger 35293ac1b9 Migration Tweeks #2 2021-01-08 10:08:21 +01:00
2 changed files with 14 additions and 9 deletions

5
.gitignore vendored
View File

@ -12,3 +12,8 @@ Homestead.yaml
npm-debug.log
yarn-error.log
.idea/
.vscode

View File

@ -16,19 +16,19 @@ class CreateDevicesTable extends Migration
Schema::create('devices', function (Blueprint $table) {
$table->id()->unique();
$table->int('room_id'); //TODO: Foregin key to Room Table
$table->string('type');
$table->string('token')->unique();
$table->datetime('heartbeat')
$table->string('mac');
$table->string('firmware_hash');
$table->string('ip_address')->unique();
$table->string('sleep_time');
$table->string('owner_id'); //TODO: Foregin key to user Table
$table->string('token')->unique();
$table->boolval('approved');
$table->string('icon');
$table->string('command');
$table->string('name')->unique();
$table->string('description')->nullable();
$table->string('type');
$table->string('icon');
$table->string('mac_address');
$table->string('ip_address')->unique();
$table->string('firmware_hash');
$table->string('sleep_time');
$table->datetime('heartbeat')
$table->string('command');
$table->timestamps();
});
}