mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-09 23:24:06 -08:00
Attempt fix at Laravel "magic" class in migrations resulting in table already exists
Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
parent
1657ba396f
commit
6f96b25440
46
database/migrations/2013_11_15_190357_create_temp_licenses_table.php
Executable file
46
database/migrations/2013_11_15_190357_create_temp_licenses_table.php
Executable file
|
@ -0,0 +1,46 @@
|
|||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
|
||||
class CreateTempLicensesTable extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
|
||||
if (!Schema::hasTable('licenses', 'id')) {
|
||||
Schema::create('licenses', function ($table) {
|
||||
$table->increments('id');
|
||||
$table->string('name');
|
||||
$table->integer('model_id');
|
||||
$table->text('serial');
|
||||
$table->string('license_email');
|
||||
$table->string('license_name');
|
||||
$table->date('purchase_date')->nullable();
|
||||
$table->decimal('purchase_cost', 8, 2)->nullable();
|
||||
$table->string('order_number');
|
||||
$table->integer('assigned_to');
|
||||
$table->text('notes');
|
||||
$table->integer('user_id')->nullable();
|
||||
$table->timestamps();
|
||||
$table->engine = 'InnoDB';
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::dropIfExists('licenses');
|
||||
}
|
||||
}
|
|
@ -11,7 +11,7 @@ class DropLicensesTable extends Migration
|
|||
*/
|
||||
public function up()
|
||||
{
|
||||
Schema::drop('licenses');
|
||||
Schema::dropIfExists('licenses');
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue