locale file & thank api

This commit is contained in:
xiaomlove
2022-02-21 00:14:52 +08:00
parent 3a357f1534
commit 7409e90875
14 changed files with 60 additions and 8 deletions
@@ -14,7 +14,7 @@ class AddSeedPointsToUsersTable extends Migration
public function up()
{
Schema::table('users', function (Blueprint $table) {
$table->decimal('seed_points', 20, 1)->nullable();
$table->decimal('seed_points', 20, 1)->default(0);
});
}