मौजूदा तालिका को संशोधित करने के लिए नीचे दिए गए आदेश का उपयोग करें
php artisan make:migration add_shipped_via_and_terms_colums_to_purchase_orders_table --table=purchase_orders
--create
का उपयोग करें नई तालिका और --table
creating बनाने के लिए मौजूदा तालिका को संशोधित करने के लिए।
अब एक नई माइग्रेशन फाइल बन जाएगी। up()
के अंदर इस फ़ाइल में फ़ंक्शन इन पंक्तियों को जोड़ें
Schema::table('purchase_orders', function(Blueprint $table){
$table->string('shipped_via');
$table->string('terms');
});
और फिर php artisan migrate
. चलाएं