mirror of
https://github.com/cp6/my-idlers.git
synced 2025-04-20 01:58:36 +00:00
Added timestamps to OS table
Added timestamps to OS table
This commit is contained in:
parent
1000148e86
commit
61c8fd4e26
1 changed files with 1 additions and 0 deletions
|
@ -16,6 +16,7 @@ class CreateOsTable extends Migration
|
||||||
Schema::create('os', function (Blueprint $table) {
|
Schema::create('os', function (Blueprint $table) {
|
||||||
$table->id()->autoIncrement();
|
$table->id()->autoIncrement();
|
||||||
$table->string('name')->unique();
|
$table->string('name')->unique();
|
||||||
|
$table->timestamps();
|
||||||
});
|
});
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue