{
    "name": "wallet_addresses",
    "columns": [
        "id",
        "user_id",
        "chain_id",
        "account_address",
        "label",
        "is_primary",
        "is_active",
        "created_at",
        "updated_at"
    ],
    "schema": "CREATE TABLE `wallet_addresses` (\n\t`id` integer PRIMARY KEY AUTOINCREMENT NOT NULL,\n\t`user_id` text NOT NULL,\n\t`chain_id` text(100) NOT NULL,\n\t`account_address` text(100) NOT NULL,\n\t`label` text(100),\n\t`is_primary` integer DEFAULT false,\n\t`is_active` integer DEFAULT true,\n\t`created_at` text DEFAULT CURRENT_TIMESTAMP NOT NULL,\n\t`updated_at` text DEFAULT CURRENT_TIMESTAMP NOT NULL,\n\tFOREIGN KEY (`user_id`) REFERENCES `users`(`username`) ON UPDATE no action ON DELETE cascade\n)"
}