diff options
Diffstat (limited to 'Year_3/TSDWL/LARAVEL/iBook/database/migrations')
8 files changed, 276 insertions, 0 deletions
diff --git a/Year_3/TSDWL/LARAVEL/iBook/database/migrations/2014_10_12_000000_create_users_table.php b/Year_3/TSDWL/LARAVEL/iBook/database/migrations/2014_10_12_000000_create_users_table.php new file mode 100644 index 0000000..621a24e --- /dev/null +++ b/Year_3/TSDWL/LARAVEL/iBook/database/migrations/2014_10_12_000000_create_users_table.php @@ -0,0 +1,36 @@ +<?php + +use Illuminate\Database\Migrations\Migration; +use Illuminate\Database\Schema\Blueprint; +use Illuminate\Support\Facades\Schema; + +class CreateUsersTable extends Migration +{ + /** + * Run the migrations. + * + * @return void + */ + public function up() + { + Schema::create('users', function (Blueprint $table) { + $table->id(); + $table->string('name'); + $table->string('email')->unique(); + $table->timestamp('email_verified_at')->nullable(); + $table->string('password'); + $table->rememberToken(); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::dropIfExists('users'); + } +} diff --git a/Year_3/TSDWL/LARAVEL/iBook/database/migrations/2014_10_12_100000_create_password_resets_table.php b/Year_3/TSDWL/LARAVEL/iBook/database/migrations/2014_10_12_100000_create_password_resets_table.php new file mode 100644 index 0000000..0ee0a36 --- /dev/null +++ b/Year_3/TSDWL/LARAVEL/iBook/database/migrations/2014_10_12_100000_create_password_resets_table.php @@ -0,0 +1,32 @@ +<?php + +use Illuminate\Database\Migrations\Migration; +use Illuminate\Database\Schema\Blueprint; +use Illuminate\Support\Facades\Schema; + +class CreatePasswordResetsTable extends Migration +{ + /** + * Run the migrations. + * + * @return void + */ + public function up() + { + Schema::create('password_resets', function (Blueprint $table) { + $table->string('email')->index(); + $table->string('token'); + $table->timestamp('created_at')->nullable(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::dropIfExists('password_resets'); + } +} diff --git a/Year_3/TSDWL/LARAVEL/iBook/database/migrations/2019_08_19_000000_create_failed_jobs_table.php b/Year_3/TSDWL/LARAVEL/iBook/database/migrations/2019_08_19_000000_create_failed_jobs_table.php new file mode 100644 index 0000000..6aa6d74 --- /dev/null +++ b/Year_3/TSDWL/LARAVEL/iBook/database/migrations/2019_08_19_000000_create_failed_jobs_table.php @@ -0,0 +1,36 @@ +<?php + +use Illuminate\Database\Migrations\Migration; +use Illuminate\Database\Schema\Blueprint; +use Illuminate\Support\Facades\Schema; + +class CreateFailedJobsTable extends Migration +{ + /** + * Run the migrations. + * + * @return void + */ + public function up() + { + Schema::create('failed_jobs', function (Blueprint $table) { + $table->id(); + $table->string('uuid')->unique(); + $table->text('connection'); + $table->text('queue'); + $table->longText('payload'); + $table->longText('exception'); + $table->timestamp('failed_at')->useCurrent(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::dropIfExists('failed_jobs'); + } +} diff --git a/Year_3/TSDWL/LARAVEL/iBook/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php b/Year_3/TSDWL/LARAVEL/iBook/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php new file mode 100644 index 0000000..4315e16 --- /dev/null +++ b/Year_3/TSDWL/LARAVEL/iBook/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php @@ -0,0 +1,36 @@ +<?php + +use Illuminate\Database\Migrations\Migration; +use Illuminate\Database\Schema\Blueprint; +use Illuminate\Support\Facades\Schema; + +class CreatePersonalAccessTokensTable extends Migration +{ + /** + * Run the migrations. + * + * @return void + */ + public function up() + { + Schema::create('personal_access_tokens', function (Blueprint $table) { + $table->id(); + $table->morphs('tokenable'); + $table->string('name'); + $table->string('token', 64)->unique(); + $table->text('abilities')->nullable(); + $table->timestamp('last_used_at')->nullable(); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::dropIfExists('personal_access_tokens'); + } +} diff --git a/Year_3/TSDWL/LARAVEL/iBook/database/migrations/2022_01_23_082135_create_books_table.php b/Year_3/TSDWL/LARAVEL/iBook/database/migrations/2022_01_23_082135_create_books_table.php new file mode 100644 index 0000000..ecc2cc1 --- /dev/null +++ b/Year_3/TSDWL/LARAVEL/iBook/database/migrations/2022_01_23_082135_create_books_table.php @@ -0,0 +1,36 @@ +<?php + +use Illuminate\Database\Migrations\Migration; +use Illuminate\Database\Schema\Blueprint; +use Illuminate\Support\Facades\Schema; + +class CreateBooksTable extends Migration +{ + /** + * Run the migrations. + * + * @return void + */ + public function up() + { + Schema::create( + 'books', function (Blueprint $table) { + $table->id(); + $table->string('name', 50); + $table->dateTime('published_at'); + $table->boolean('is_online')->default(false); + $table->timestamps(); + } + ); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::dropIfExists('books'); + } +} diff --git a/Year_3/TSDWL/LARAVEL/iBook/database/migrations/2022_01_23_082852_published_could_be_null.php b/Year_3/TSDWL/LARAVEL/iBook/database/migrations/2022_01_23_082852_published_could_be_null.php new file mode 100644 index 0000000..a00c167 --- /dev/null +++ b/Year_3/TSDWL/LARAVEL/iBook/database/migrations/2022_01_23_082852_published_could_be_null.php @@ -0,0 +1,32 @@ +<?php + +use Illuminate\Database\Migrations\Migration; +use Illuminate\Database\Schema\Blueprint; +use Illuminate\Support\Facades\Schema; + +class PublishedCouldBeNull extends Migration +{ + /** + * Run the migrations. + * + * @return void + */ + public function up() + { + Schema::table( + 'books', function (Blueprint $table) { + $table->string('published_at')->nullable()->change(); + } + ); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + // + } +} diff --git a/Year_3/TSDWL/LARAVEL/iBook/database/migrations/2022_01_23_083556_create_authors_table.php b/Year_3/TSDWL/LARAVEL/iBook/database/migrations/2022_01_23_083556_create_authors_table.php new file mode 100644 index 0000000..455831a --- /dev/null +++ b/Year_3/TSDWL/LARAVEL/iBook/database/migrations/2022_01_23_083556_create_authors_table.php @@ -0,0 +1,35 @@ +<?php + +use Illuminate\Database\Migrations\Migration; +use Illuminate\Database\Schema\Blueprint; +use Illuminate\Support\Facades\Schema; + +class CreateAuthorsTable extends Migration +{ + /** + * Run the migrations. + * + * @return void + */ + public function up() + { + Schema::create( + 'authors', function (Blueprint $table) { + $table->id(); + $table->string('name'); + $table->string('born_in')->nullable(); + $table->timestamps(); + } + ); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::dropIfExists('authors'); + } +} diff --git a/Year_3/TSDWL/LARAVEL/iBook/database/migrations/2022_01_23_083714_add_author_of_a_book.php b/Year_3/TSDWL/LARAVEL/iBook/database/migrations/2022_01_23_083714_add_author_of_a_book.php new file mode 100644 index 0000000..befd862 --- /dev/null +++ b/Year_3/TSDWL/LARAVEL/iBook/database/migrations/2022_01_23_083714_add_author_of_a_book.php @@ -0,0 +1,33 @@ +<?php + +use Illuminate\Database\Migrations\Migration; +use Illuminate\Database\Schema\Blueprint; +use Illuminate\Support\Facades\Schema; + +class AddAuthorOfABook extends Migration +{ + /** + * Run the migrations. + * + * @return void + */ + public function up() + { + Schema::table( + 'books', function (Blueprint $table) { + $table->bigInteger('author_id')->unsigned()->nullable(); + $table->foreign('author_id')->references('id')->on('authors')->onUpdate('cascade')->onDelete('set null'); + } + ); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + // + } +} |