aboutsummaryrefslogtreecommitdiff
path: root/src/migrations/2015_02_23_184402_botleaguesapi-create_users.php
diff options
context:
space:
mode:
authorCamil Staps2015-04-26 23:29:17 +0200
committerCamil Staps2015-04-26 23:29:17 +0200
commit11a20c5be971d97f4a4f575f91b706791c1893a9 (patch)
tree9748c5d865005531c074369ee1611ed8e0fa334a /src/migrations/2015_02_23_184402_botleaguesapi-create_users.php
parentuser routes (diff)
Competitions; CompetitionTypes; Participants; better routing; administrators; ...
Diffstat (limited to 'src/migrations/2015_02_23_184402_botleaguesapi-create_users.php')
-rw-r--r--src/migrations/2015_02_23_184402_botleaguesapi-create_users.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/migrations/2015_02_23_184402_botleaguesapi-create_users.php b/src/migrations/2015_02_23_184402_botleaguesapi-create_users.php
index b768180..b054a43 100644
--- a/src/migrations/2015_02_23_184402_botleaguesapi-create_users.php
+++ b/src/migrations/2015_02_23_184402_botleaguesapi-create_users.php
@@ -18,6 +18,7 @@ class BotleaguesapiCreateUsers extends Migration {
$table->string('email', 127)->unique();
$table->string('password', 60);
$table->rememberToken();
+ $table->boolean('isAdministrator')->default(false);
$table->timestamps();
});
}