timestamps issue

This commit is contained in:
2018-10-27 03:19:34 -05:00
parent 2a0759d9fe
commit 1c3cfcab2e
4 changed files with 2 additions and 6 deletions

View File

@@ -8,7 +8,4 @@ class DokuGroupNames extends Model
{
// Table Name
protected $table = 'wiki_groupnames';
// Timestamps
public $timestamps = 'false';
}

View File

@@ -8,7 +8,4 @@ class DokuMember extends Model
{
// Table Name
protected $table = 'wiki_member';
// Timestamps
public $timestamps = 'false';
}

View File

@@ -16,6 +16,7 @@ class CreateWikiGroupnames extends Migration
Schema::create('wiki_groupnames', function(Blueprint $table) {
$table->increments('id');
$table->string('gname');
$table->timestamps();
});
}

View File

@@ -17,6 +17,7 @@ class CreateWikiMember extends Migration
$table->integer('uid');
$table->integer('gid');
$table->string('groupname');
$table->timestamps();
});
}