timestamps
This commit is contained in:
@@ -8,4 +8,6 @@ class DokuGroupNames extends Model
|
||||
{
|
||||
// Table Name
|
||||
protected $table = 'wiki_groupnames';
|
||||
|
||||
public $timestamps = false;
|
||||
}
|
||||
|
||||
@@ -8,4 +8,6 @@ class DokuMember extends Model
|
||||
{
|
||||
// Table Name
|
||||
protected $table = 'wiki_member';
|
||||
|
||||
public $timestamps = false;
|
||||
}
|
||||
|
||||
@@ -30,6 +30,7 @@ class CreateMoonsTable extends Migration
|
||||
$table->integer('FourthQuantity')->default('0');
|
||||
$table->string('RentalCorp')->default('Not Rented');
|
||||
$table->integer('RentalEnd')->default('0');
|
||||
$table->timestamp('created_at')->nullable();
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
@@ -19,7 +19,6 @@ class CreateWikiUsers extends Migration
|
||||
$table->string('pass');
|
||||
$table->string('name');
|
||||
$table->string('mail')->default('')->nullable();
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
@@ -16,7 +16,6 @@ class CreateWikiGroupnames extends Migration
|
||||
Schema::create('wiki_groupnames', function(Blueprint $table) {
|
||||
$table->increments('id');
|
||||
$table->string('gname');
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
@@ -17,7 +17,6 @@ class CreateWikiMember extends Migration
|
||||
$table->integer('uid');
|
||||
$table->integer('gid');
|
||||
$table->string('groupname');
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user