diff options
author | Marvin Borner | 2018-08-24 13:17:32 +0200 |
---|---|---|
committer | Marvin Borner | 2018-08-24 13:17:32 +0200 |
commit | 0ee38e98532a9daf7ba08ab65b7f73d6505e0aea (patch) | |
tree | 6ff916179bb4ebe14369ea99b84109dc6e52ba13 /database/migrations/2018_08_24_102141_create_posts_table.php | |
parent | 3045cb39be8b9c9cb3ca6ed643ccceac0042f0c0 (diff) |
Began API for posts
Diffstat (limited to 'database/migrations/2018_08_24_102141_create_posts_table.php')
-rw-r--r-- | database/migrations/2018_08_24_102141_create_posts_table.php | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/database/migrations/2018_08_24_102141_create_posts_table.php b/database/migrations/2018_08_24_102141_create_posts_table.php new file mode 100644 index 0000000..f841c69 --- /dev/null +++ b/database/migrations/2018_08_24_102141_create_posts_table.php @@ -0,0 +1,33 @@ +<?php + +use Illuminate\Support\Facades\Schema; +use Illuminate\Database\Schema\Blueprint; +use Illuminate\Database\Migrations\Migration; + +class CreatePostsTable extends Migration +{ + /** + * Run the migrations. + * + * @return void + */ + public function up() + { + Schema::create('text_posts', function (Blueprint $table) { + $table->increments('id'); + $table->integer('post_types_id'); + $table->integer('user_id'); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::drop('text_posts'); + } +} |