X7ROOT File Manager
Current Path:
/home/gfecatvj/sites/realesbar-X/database/migrations
home
/
gfecatvj
/
sites
/
realesbar-X
/
database
/
migrations
/
📁
..
📄
2014_10_12_000000_create_users_table.php
(1.6 KB)
📄
2014_10_12_100000_create_password_resets_table.php
(688 B)
📄
2019_08_19_000000_create_failed_jobs_table.php
(774 B)
📄
2020_07_27_025632_create_bloggers_table.php
(1013 B)
📄
2020_07_27_030335_create_articles_table.php
(1.34 KB)
📄
2020_07_27_031703_create_agents_table.php
(997 B)
📄
2020_07_27_033636_create_categories_table.php
(625 B)
📄
2020_07_28_001906_create_associations_table.php
(877 B)
📄
2020_07_28_001953_create_agencies_table.php
(916 B)
📄
2020_07_28_003344_create_comments_table.php
(1.3 KB)
📄
2020_07_28_003914_create_pcomments_table.php
(1.29 KB)
📄
2020_07_28_004150_create_properties_table.php
(2.4 KB)
📄
2020_07_28_004234_create_feedbacks_table.php
(952 B)
📄
2020_07_28_005908_create_messages_table.php
(930 B)
📄
2020_07_28_011128_create_ratings_table.php
(580 B)
📄
2020_07_28_032641_create_roles_table.php
(646 B)
Editing: 2020_07_28_004234_create_feedbacks_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateFeedbacksTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('feedbacks', function (Blueprint $table) { $table->id(); $table->smallInteger('reciver_id'); $table->mediumText('sender_name'); $table->mediumText('sender_email')->nullable(); $table->integer('phone'); $table->text('message'); $table->integer('parent_id')->nullable(); $table->timestamp('last_updated')->nullable(); $table->timestamp('date_added')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('feedbacks'); } }
Upload File
Create Folder