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/VERYOLDpykota-upgrade-postgresql.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/>. 
     
    2626-- the normal script instead. 
    2727-- 
    28                          
    29 --                          
     28 
     29-- 
    3030-- WARNING : YOU NEED A RECENT VERSION OF POSTGRESQL FOR THE DROP COLUMN STATEMENT TO WORK ! 
    3131-- 
    3232 
    33 --                          
     33-- 
    3434-- Modify the old database schema 
    3535-- 
     
    3737ALTER TABLE grouppquota DROP COLUMN pagecounter; 
    3838 
    39 --                          
     39-- 
    4040-- Create the groups/members relationship 
    4141-- 
     
    4343                           userid INT4 REFERENCES users(id), 
    4444                           PRIMARY KEY (groupid, userid)); 
    45                             
    46 --                         
    47 -- Set some ACLs                         
     45 
    4846-- 
    49 REVOKE ALL ON groupsmembers FROM public;                         
     47-- Set some ACLs 
     48-- 
     49REVOKE ALL ON groupsmembers FROM public; 
    5050GRANT SELECT, INSERT, UPDATE, DELETE, REFERENCES ON groupsmembers TO pykotaadmin;