mirror of
https://github.com/sigmasternchen/drnk.me
synced 2025-03-15 09:48:54 +00:00
12 lines
314 B
MySQL
12 lines
314 B
MySQL
![]() |
|
||
|
CREATE TABLE `dm_urls` (
|
||
|
`id` BIGINT AUTO_INCREMENT PRIMARY KEY,
|
||
|
`created` DATETIME DEFAULT CURRENT_TIMESTAMP,
|
||
|
`updated` DATETIME DEFAULT CURRENT_TIMESTAMP,
|
||
|
`deleted` DATETIME,
|
||
|
`slug` VARCHAR(100) NOT NULL,
|
||
|
`url` VARCHAR(255) NOT NULL,
|
||
|
`access_key` VARCHAR(255),
|
||
|
|
||
|
INDEX (`slug`)
|
||
|
);
|