From f9e29ab6200da9a11f8df6f7eebcc1de7afcbbbf Mon Sep 17 00:00:00 2001 From: Greg Sabino Mullane Date: Fri, 28 May 2010 21:37:15 +0000 Subject: [PATCH] Standardize the formatting. --- maintenance/postgres/tables.sql | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/maintenance/postgres/tables.sql b/maintenance/postgres/tables.sql index 1f6e95fe88..0c8c1c398b 100644 --- a/maintenance/postgres/tables.sql +++ b/maintenance/postgres/tables.sql @@ -610,16 +610,16 @@ CREATE UNIQUE INDEX user_properties_user_property ON user_properties (up_user,up CREATE INDEX user_properties_property ON user_properties (up_property); CREATE TABLE l10n_cache ( - lc_lang TEXT NOT NULL, - lc_key TEXT NOT NULL, - lc_value TEXT NOT NULL + lc_lang TEXT NOT NULL, + lc_key TEXT NOT NULL, + lc_value TEXT NOT NULL ); CREATE INDEX l10n_cache_lc_lang_key ON l10n_cache (lc_lang, lc_key); CREATE TABLE iwlinks ( - iwl_from INTEGER NOT NULL DEFAULT 0, - iwl_prefix TEXT NOT NULL DEFAULT '', - iwl_title TEXT NOT NULL DEFAULT '' + iwl_from INTEGER NOT NULL DEFAULT 0, + iwl_prefix TEXT NOT NULL DEFAULT '', + iwl_title TEXT NOT NULL DEFAULT '' ); CREATE UNIQUE INDEX iwl_from ON iwlinks (iwl_from, iwl_prefix, iwl_title); CREATE INDEX iwl_prefix_from_title ON iwlinks (iwl_prefix, iwl_from, iwl_title); -- 2.20.1