예제 #1
0
파일: Role.php 프로젝트: leon723/chestnut
 public function schema(Schema $table)
 {
     $table->increment('id');
     $table->role_name('string');
     $table->permission('string');
     $table->timeStamps();
     $table->unique('role_name');
 }