Init(Core): add project to git and add seeders and factory
This commit is contained in:
41
database/migrations/2023_07_17_100908_create_posts_table.php
Normal file
41
database/migrations/2023_07_17_100908_create_posts_table.php
Normal file
@@ -0,0 +1,41 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*/
|
||||
public function up(): void
|
||||
{
|
||||
Schema::create('posts', function (Blueprint $table) {
|
||||
$table->id();
|
||||
|
||||
$table->string('title');
|
||||
$table->string('description')->nullable();
|
||||
|
||||
$table->text('content');
|
||||
|
||||
$table->string('slug');
|
||||
|
||||
$table->string('image_path');
|
||||
$table->string('image_thumbnail');
|
||||
$table->string('image_alt');
|
||||
|
||||
$table->string('user_token');
|
||||
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('posts');
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user