Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/resources/sql/patches/014.shortcuts.sql
12250 views
1
CREATE TABLE {$NAMESPACE}_repository.repository_shortcut (
2
id int unsigned not null auto_increment primary key,
3
name varchar(255) not null,
4
href varchar(255) not null,
5
description varchar(255) not null,
6
sequence int unsigned not null
7
);
8
9