From 11a20c5be971d97f4a4f575f91b706791c1893a9 Mon Sep 17 00:00:00 2001 From: Camil Staps Date: Sun, 26 Apr 2015 23:29:17 +0200 Subject: Competitions; CompetitionTypes; Participants; better routing; administrators; ... --- ...015_02_23_184402_botleaguesapi-create_users.php | 1 + ...2015_botleaguesapi-create_competition_types.php | 34 ++++++++++++++++++ ...26_192025_botleaguesapi-create_competitions.php | 41 ++++++++++++++++++++++ ...26_192035_botleaguesapi-create_participants.php | 36 +++++++++++++++++++ 4 files changed, 112 insertions(+) create mode 100644 src/migrations/2015_04_26_192015_botleaguesapi-create_competition_types.php create mode 100644 src/migrations/2015_04_26_192025_botleaguesapi-create_competitions.php create mode 100644 src/migrations/2015_04_26_192035_botleaguesapi-create_participants.php (limited to 'src/migrations') 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(); }); } diff --git a/src/migrations/2015_04_26_192015_botleaguesapi-create_competition_types.php b/src/migrations/2015_04_26_192015_botleaguesapi-create_competition_types.php new file mode 100644 index 0000000..280bb6d --- /dev/null +++ b/src/migrations/2015_04_26_192015_botleaguesapi-create_competition_types.php @@ -0,0 +1,34 @@ +increments('type'); + $table->string('description'); + $table->mediumText('explanation'); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::drop('competition_types'); + } + +} diff --git a/src/migrations/2015_04_26_192025_botleaguesapi-create_competitions.php b/src/migrations/2015_04_26_192025_botleaguesapi-create_competitions.php new file mode 100644 index 0000000..8652086 --- /dev/null +++ b/src/migrations/2015_04_26_192025_botleaguesapi-create_competitions.php @@ -0,0 +1,41 @@ +increments('id')->unsigned(); + $table->integer('gameId')->unsigned(); + $table->foreign('gameId')->references('id')->on('games'); + $table->string('title', 127)->unique(); + $table->mediumText('description')->nullable(); + $table->integer('competition_type')->unsigned(); + $table->foreign('competition_type')->references('type')->on('competition_types'); + $table->dateTime('start'); + $table->dateTime('end'); + $table->mediumInteger('max_players')->unsigned(); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::drop('competitions'); + } + +} diff --git a/src/migrations/2015_04_26_192035_botleaguesapi-create_participants.php b/src/migrations/2015_04_26_192035_botleaguesapi-create_participants.php new file mode 100644 index 0000000..9b76316 --- /dev/null +++ b/src/migrations/2015_04_26_192035_botleaguesapi-create_participants.php @@ -0,0 +1,36 @@ +increments('id'); + $table->integer('botId')->unsigned(); + $table->foreign('botId')->references('id')->on('bots'); + $table->integer('competitionId')->unsigned(); + $table->foreign('competitionId')->references('id')->on('competitions'); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::drop('participants'); + } + +} -- cgit v1.2.3