diff --git a/database/migrations/2024_05_14_150646_add_column_to_table_drugs.php b/database/migrations/2024_05_14_150646_add_column_to_table_drugs.php new file mode 100644 index 00000000..6ae79552 --- /dev/null +++ b/database/migrations/2024_05_14_150646_add_column_to_table_drugs.php @@ -0,0 +1,32 @@ +decimal('price', 8, 2)->nullable()->after('active'); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('drugs', function (Blueprint $table) { + // + }); + } +};