> ## Documentation Index
> Fetch the complete documentation index at: https://axeldevelopment.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# SQL File

```sql theme={null}
CREATE TABLE IF NOT EXISTS `tablet_daily_rewards` (
  `identifier` varchar(60) NOT NULL,
  `last_claim` bigint(20) NOT NULL DEFAULT 0,
  `last_rewards` longtext DEFAULT NULL,
  PRIMARY KEY (`identifier`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE IF NOT EXISTS `tablet_deepweb_messages` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `sender` varchar(50) NOT NULL,
  `message` text NOT NULL,
  `image` text DEFAULT NULL,
  `time` varchar(10) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE IF NOT EXISTS `tablet_market_profiles` (
  `identifier` varchar(60) NOT NULL,
  `username` varchar(50) NOT NULL,
  `balance` bigint(20) NOT NULL DEFAULT 0,
  PRIMARY KEY (`identifier`),
  UNIQUE KEY `username` (`username`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE IF NOT EXISTS `tablet_market_listings` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `seller_identifier` varchar(60) NOT NULL,
  `seller_name` varchar(50) NOT NULL,
  `item_name` varchar(50) NOT NULL,
  `item_label` varchar(100) NOT NULL,
  `item_count` int(11) NOT NULL,
  `price` bigint(20) NOT NULL,
  `description` varchar(255) DEFAULT NULL,
  `status` varchar(20) NOT NULL DEFAULT 'active',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `seller_identifier` (`seller_identifier`),
  KEY `status` (`status`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
```
