Performed using:
git ls-files \*.json \*.php \*.xml \*.xsd \*.html \*.txt \*.sql | xargs sed -i -e :a -e '/^\n*$/{$d;N;};/\n$/ba'
Excluded tests/parser/preprocess.
Change-Id: I513538ff13c942acfe589f15c5128a8df2b3ace9
6 lines
171 B
SQL
6 lines
171 B
SQL
CREATE TABLE l10n_cache (
|
|
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);
|