-- Drop the old table and recreate with direct fields instead of JSON data DROP TABLE IF EXISTS player_houses; CREATE TABLE player_houses ( id INTEGER PRIMARY KEY, name TEXT NOT NULL, description TEXT NOT NULL, pos_x REAL NOT NULL, pos_z REAL NOT NULL, price INTEGER NOT NULL );