1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-04 04:32:43 +01:00

Merge pull request #71 from mareksapota-fb/master

Pull request for differential revision D1014
This commit is contained in:
Evan Priestley 2011-10-17 14:33:40 -07:00
commit 38115118e9
8 changed files with 14 additions and 14 deletions

View file

@ -1,4 +1,4 @@
CREATE DATABASE phabricator_herald;
CREATE DATABASE IF NOT EXISTS phabricator_herald;
CREATE TABLE phabricator_herald.herald_action (
id int unsigned not null auto_increment primary key,

View file

@ -1,4 +1,4 @@
CREATE DATABASE phabricator_owners;
CREATE DATABASE IF NOT EXISTS phabricator_owners;
CREATE TABLE phabricator_owners.owners_package (
id int unsigned not null auto_increment primary key,

View file

@ -1,4 +1,4 @@
CREATE DATABASE phabricator_xhpastview;
CREATE DATABASE IF NOT EXISTS phabricator_xhpastview;
CREATE TABLE phabricator_xhpastview.xhpastview_parsetree (
id int unsigned not null auto_increment primary key,
authorPHID varchar(64) binary,

View file

@ -1,4 +1,4 @@
CREATE DATABASE phabricator_pastebin;
CREATE DATABASE IF NOT EXISTS phabricator_pastebin;
CREATE TABLE phabricator_pastebin.pastebin_paste (
id INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY,

View file

@ -1,4 +1,4 @@
CREATE DATABASE phabricator_countdown;
CREATE DATABASE IF NOT EXISTS phabricator_countdown;
CREATE TABLE phabricator_countdown.countdown_timer (
id INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY,

View file

@ -1,4 +1,4 @@
CREATE DATABASE phabricator_feed;
CREATE DATABASE IF NOT EXISTS phabricator_feed;
CREATE TABLE phabricator_feed.feed_storydata (
id INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY,

View file

@ -1,4 +1,4 @@
CREATE DATABASE phabricator_slowvote;
CREATE DATABASE IF NOT EXISTS phabricator_slowvote;
CREATE TABLE phabricator_slowvote.slowvote_poll (
id INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY,

View file

@ -1,4 +1,4 @@
CREATE DATABASE phabricator_phriction;
CREATE DATABASE IF NOT EXISTS phabricator_phriction;
CREATE TABLE phabricator_phriction.phriction_document (
id INT UNSIGNED NOT NULL,