mirror of
https://gitlab.com/TheGamecraft/c-cms.git
synced 2026-04-23 11:29:10 -04:00
ALPHA 3.0.2
This commit is contained in:
@@ -16,7 +16,22 @@ class CreateRanksTable extends Migration
|
||||
Schema::create('ranks', function (Blueprint $table) {
|
||||
$table->increments('id');
|
||||
$table->string('name');
|
||||
$table->text('perm');
|
||||
$table->text('acces_level');
|
||||
$table->boolean('schedule_see');
|
||||
$table->boolean('schedule_edit');
|
||||
$table->boolean('schedule_notify');
|
||||
$table->boolean('message_see');
|
||||
$table->boolean('message_edit');
|
||||
$table->boolean('message_notify');
|
||||
$table->boolean('paper_edit');
|
||||
$table->boolean('paper_publish');
|
||||
$table->boolean('paper_notify');
|
||||
$table->boolean('inventory_see');
|
||||
$table->boolean('inventory_edit');
|
||||
$table->boolean('inventory_notify');
|
||||
$table->boolean('user_see');
|
||||
$table->boolean('user_edit');
|
||||
$table->boolean('user_notify');
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user