1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 09:18:48 +02:00
phorge-phorge/resources/sql/patches/014.shortcuts.sql
2011-03-31 00:33:44 -07:00

7 lines
246 B
SQL

CREATE TABLE phabricator_repository.repository_shortcut (
id int unsigned not null auto_increment primary key,
name varchar(255) not null,
href varchar(255) not null,
description varchar(255) not null,
sequence int unsigned not null
);