X7ROOT File Manager
Current Path:
/var/www/html/mpc_kiso/database/migrations
var
/
www
/
html
/
mpc_kiso
/
database
/
migrations
/
📁
..
📄
2014_10_12_000000_create_users_table.php
(781 B)
📄
2014_10_12_100000_create_password_resets_table.php
(715 B)
📄
2017_08_29_064643_create_admins_table.php
(620 B)
📄
2017_09_07_041931_create_employees_table.php
(629 B)
📄
2018_04_02_142137_create_permission_tables.php
(3.19 KB)
📄
2018_04_07_170349_create_audits_table.php
(1.73 KB)
📄
2018_04_16_035112_create_properties_table.php
(632 B)
📄
2018_04_17_035707_create_residents_table.php
(629 B)
📄
2018_04_20_015116_create_bookings_table.php
(626 B)
📄
2018_04_20_135501_base_menu.php
(1.24 KB)
📄
2018_04_26_092349_create_merchants_table.php
(629 B)
📄
2018_04_30_021242_create_agents_table.php
(620 B)
📄
2018_04_30_110901_create_products_table.php
(626 B)
📄
2018_05_18_085338_create_orders_table.php
(620 B)
📄
2018_06_29_002945_create_messagings_table.php
(632 B)
📄
2018_11_11_073711_create_attendances_table.php
(635 B)
📄
2018_11_28_130144_create_reports_table.php
(623 B)
📄
2019_03_20_193639_create_permohonans_table.php
(635 B)
📄
2022_10_01_160457_create_quality_manuals_table.php
(615 B)
📄
2022_10_01_193010_create_open_files_table.php
(600 B)
Editing: 2018_06_29_002945_create_messagings_table.php
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateMessagingsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('messagings', function (Blueprint $table) { $table->increments('id'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('messagings'); } }
Upload File
Create Folder