Laravel + Postgres
Need to change the type of cubic_meter to double precision
Error im getting when doing the migration
发布于 2020-08-26 16:10:12
您错误地使用了迁移。尝试如下所示:
Schema::table('products', function (Blueprint $table) { $table->double('cubic_meters')->change(); });
https://stackoverflow.com/questions/63593251
相似问题