jlelse
/
kis3
Archived
1
Fork 0
This repository has been archived on 2021-01-04. You can view files and clone it, but cannot push or open issues or pull requests.
kis3/migrations/1_Init_Database.sql

8 lines
179 B
MySQL
Raw Normal View History

2019-04-05 14:47:04 +00:00
-- +migrate Up
CREATE TABLE IF NOT EXISTS `views`
2019-04-02 14:28:06 +00:00
(
`url` TEXT NOT NULL,
`time` TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL,
`ref` TEXT DEFAULT '' NOT NULL
2019-04-05 14:47:04 +00:00
);