-
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
56 additions
and
0 deletions.
There are no files selected for viewing
56 changes: 56 additions & 0 deletions
56
Documentations/Web Software and API documentation/meter.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
-- phpMyAdmin SQL Dump | ||
-- version 4.9.5 | ||
-- https://www.phpmyadmin.net/ | ||
-- | ||
-- Host: localhost:3306 | ||
-- Generation Time: Oct 06, 2022 at 07:04 AM | ||
-- Server version: 10.5.16-MariaDB | ||
-- PHP Version: 7.3.32 | ||
|
||
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; | ||
SET AUTOCOMMIT = 0; | ||
START TRANSACTION; | ||
SET time_zone = "+00:00"; | ||
|
||
|
||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; | ||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; | ||
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; | ||
/*!40101 SET NAMES utf8mb4 */; | ||
|
||
-- | ||
-- Database: `id17130795_energymeter` | ||
-- | ||
|
||
-- -------------------------------------------------------- | ||
|
||
-- | ||
-- Table structure for table `meter` | ||
-- | ||
|
||
CREATE TABLE `meter` ( | ||
`meterid` varchar(50) COLLATE utf8_unicode_ci NOT NULL, | ||
`amount` varchar(50) COLLATE utf8_unicode_ci NOT NULL, | ||
`transaction_id` varchar(50) COLLATE utf8_unicode_ci NOT NULL, | ||
`status` varchar(50) COLLATE utf8_unicode_ci NOT NULL, | ||
`conn_status` varchar(20) COLLATE utf8_unicode_ci NOT NULL, | ||
`Email` varchar(100) COLLATE utf8_unicode_ci NOT NULL, | ||
`thingsboardlink` varchar(300) COLLATE utf8_unicode_ci NOT NULL | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; | ||
|
||
-- | ||
-- Dumping data for table `meter` | ||
-- | ||
|
||
INSERT INTO `meter` (`meterid`, `amount`, `transaction_id`, `status`, `conn_status`, `Email`, `thingsboardlink`) VALUES | ||
('MT25', '0', '0', 'sucess', '', 'test@gmail.com', ''), | ||
('MT50', '0', '0', 'sucess', '', 'test@gmail.com', ''), | ||
('MT100', '0', '0', 'sucess', '1665039467', 'test@gmail.com', 'https://demo.thingsboard.io/dashboard/3d8fcd50-4509-11ed-b827-c9be76c6f5d7?publicId=13c73fe0-7209-11ec-9a90-af0223be0666'), | ||
('MT5000', '0', '0', 'sucess', '', 'test@gmail.com', ''), | ||
('MT50000', '5000', 'bgh3223#190', 'pending', '', 'test@gmail.com', ''), | ||
('mt75', '0', '0', '', '', 'Vivien@gmail.com', ''); | ||
COMMIT; | ||
|
||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; | ||
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; | ||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; |
ad7f5bf
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
addition of SQL dumb file in the documentation folder.