Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/resources/sql/patches/044.countdown.sql
12250 views
1
CREATE TABLE {$NAMESPACE}_countdown.countdown_timer (
2
id INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY,
3
title VARCHAR(255) NOT NULL,
4
authorPHID VARCHAR(64) BINARY NOT NULL,
5
datepoint INT UNSIGNED NOT NULL,
6
dateCreated INT UNSIGNED NOT NULL,
7
dateModified INT UNSIGNED NOT NULL
8
);
9
10