source: trunk/scripts/ia_job_add_status_index @ 1184

Revision 961, 201 bytes checked in by bogdan2412, 3 years ago (diff)

Fixed typo in common/db/job.php. Made some scripts executable.

  • Property svn:executable set to *
Line 
1#! /usr/bin/env php
2<?php
3require_once(dirname($argv[0]) . "/utilities.php");
4
5db_connect();
6$query = "ALTER TABLE `ia_job`
7    ADD INDEX by_status USING BTREE(`status`, `id`)";
8
9db_query($query);
10
11?>
Note: See TracBrowser for help on using the repository browser.