0
我想在laravel架構中創建價格列。在laravel架構中創建價格列
public function up()
{
Schema::create('cameras', function (Blueprint $table) {
$table->increments('id');
$table->string('name');
$table->string('condition');
$table->string('price');
$table->string('type');
$table->timestamps();
});
}
或者是否有我可以使用的替代數據類型?因爲在文檔中我沒有看到任何貨幣價值。任何幫助,將不勝感激。
將它們存儲在'float'類型中時會出現什麼問題?什麼是貨幣數據類型的需要? –