add shorturl example code
This commit is contained in:
6
example/shorturl/rpc/transform/model/shorturl.sql
Normal file
6
example/shorturl/rpc/transform/model/shorturl.sql
Normal file
@@ -0,0 +1,6 @@
|
||||
CREATE TABLE `shorturl`
|
||||
(
|
||||
`shorten` varchar(255) NOT NULL COMMENT 'shorten key',
|
||||
`url` varchar(255) NOT NULL COMMENT 'original url',
|
||||
PRIMARY KEY(`shorten`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
Reference in New Issue
Block a user