• Views
  • Iteration Report
  • My Iteration Report
  •  
OMERO.server
  • Login
  • Help/Guide
  • About Trac
  • Preferences
  • Wiki
  • Timeline
  • Roadmap
  • Browse Source
  • View Tickets
  • Search

Context Navigation

  • ← Previous Change
  • Next Change →

Changeset 1583 for trunk/sql/psql/OMERO3__1__OMERO3__4__A_hibtool.sql

Show
Ignore:
Timestamp:
06/03/07 20:39:44 (18 months ago)
Author:
jmoore
Message:

Cleaning up the OMERO31 to OMERO34 conversion.

Files:
1 modified

  • trunk/sql/psql/OMERO3__1__OMERO3__4__A_hibtool.sql (modified) (4 diffs)

Legend:

Unmodified
Added
Removed
  • trunk/sql/psql/OMERO3__1__OMERO3__4__A_hibtool.sql

    r1562 r1583  
    1   
    2  begin; 
     1BEGIN; 
     2 
     3 -- Manually added items 
     4 alter table originalfile alter column size type int8; 
     5 
     6 -- Items calculated by <schemaupdate/> 
    37 create table binning (id int8 not null, owner_id int8 not null, group_id int8 not null, creation_id int8 not null, permissions int8 not null, external_id int8 unique, value varchar(255) not null unique, primary key (id)); 
    48 create table coating (id int8 not null, owner_id int8 not null, group_id int8 not null, creation_id int8 not null, permissions int8 not null, external_id int8 unique, value varchar(255) not null unique, primary key (id)); 
    … …  
    4751 create table projectannotation (id int8 not null, owner_id int8 not null, group_id int8 not null, creation_id int8 not null, update_id int8 not null, permissions int8 not null, external_id int8 unique, version int4 default 0, project int8 not null, content text not null, primary key (id)); 
    4852 create table transmittancerange (id int8 not null, owner_id int8 not null, group_id int8 not null, creation_id int8 not null, update_id int8 not null, permissions int8 not null, external_id int8 unique, version int4 default 0, cutIn int4 not null, cutOut int4 not null, cutInTolerance int4, cutOutTolerance int4, transmittance float4 not null, primary key (id)); 
    49  
    5053 alter table binning add constraint FKbinning_owner_id_experimenter foreign key (owner_id) references experimenter; 
    5154 alter table binning add constraint FKbinning_creation_id_event foreign key (creation_id) references event; 
    … …  
    127130 alter table transmittancerange add constraint FKtransmittancerange_external_id_externalinfo foreign key (external_id) references externalinfo; 
    128131 alter table transmittancerange add constraint FKtransmittancerange_group_id_experimentergroup foreign key (group_id) references experimentergroup; 
    129  
    130132 create sequence seq_binning; 
    131133 create sequence seq_coating; 
    … …  
    143145 create sequence seq_transmittancerange; 
    144146 
    145  commit; 
     147COMMIT; 

Download in other formats:

  • Unified Diff
  • Zip Archive

Trac Powered

Powered by Trac 0.11
By Edgewall Software.

Visit the Trac open source project at
http://trac.edgewall.org/