mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
7 lines
246 B
SQL
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
|
|
);
|