コード例 #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');
 }