Show
Ignore:
Timestamp:
09/27/08 22:02:37 (16 years ago)
Author:
jerome
Message:

Removed unnecessary spaces at EOL.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/initscripts/postgresql/upgrade-to-1.21.sql

    r3259 r3413  
    77-- the Free Software Foundation, either version 3 of the License, or 
    88-- (at your option) any later version. 
    9 --  
     9-- 
    1010-- This program is distributed in the hope that it will be useful, 
    1111-- but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1212-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
    1313-- GNU General Public License for more details. 
    14 --  
     14-- 
    1515-- You should have received a copy of the GNU General Public License 
    1616-- along with this program.  If not, see <http://www.gnu.org/licenses/>. 
     
    2222-- This script has to be used if you already 
    2323-- have a pre-1.21 version of PyKota to upgrade 
    24 -- your database schema.  
     24-- your database schema. 
    2525-- 
    2626-- YOU DON'T NEED TO USE IT IF YOU'VE JUST INSTALLED PYKOTA 
    2727-- 
    28                          
    29 --                          
     28 
     29-- 
    3030-- Modify the old database schema 
    3131-- 
     
    5151CREATE INDEX jobhistory_u_id_ix ON jobhistory (userid); 
    5252 
    53 --  
     53-- 
    5454-- Create the table for coefficients wrt paper sizes and the like 
    5555-- 
    56 CREATE TABLE coefficients (id SERIAL PRIMARY KEY NOT NULL,  
    57                            printerid INTEGER NOT NULL REFERENCES printers(id),  
    58                            label TEXT NOT NULL,  
    59                            coefficient FLOAT DEFAULT 1.0,  
     56CREATE TABLE coefficients (id SERIAL PRIMARY KEY NOT NULL, 
     57                           printerid INTEGER NOT NULL REFERENCES printers(id), 
     58                           label TEXT NOT NULL, 
     59                           coefficient FLOAT DEFAULT 1.0, 
    6060                           CONSTRAINT coeffconstraint UNIQUE (printerid, label)); 
    61                             
    62 REVOKE ALL ON coefficients FROM public;                         
     61 
     62REVOKE ALL ON coefficients FROM public; 
    6363REVOKE ALL ON coefficients_id_seq FROM public; 
    6464GRANT SELECT, INSERT, UPDATE, DELETE, REFERENCES ON coefficients TO pykotaadmin;