Sha256: 3bb8f2ed90cce44b7d3151afc6ef3c08b6ba92d6543c689a4fb8b405446243d6

Contents?: true

Size: 502 Bytes

Versions: 2

Compression:

Stored size: 502 Bytes

Contents

Sequel.migration do
  change do
    create_table(:registry_applications) do
      primary_key :id ,:auto_increment => false, :type => String
      String :email , :null => false
      String :project , :null => false
      String :description , :text => true
      String :state  , :null => false , :default => 'PENDING'
      String :created_at , :null => false 
      String :updated_at
      String :comments , :text => true
      String :settings , :null => false , :text => true
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ocp_registry-0.0.5.pre lib/ocp_registry/db/001_db_initialize.rb
ocp_registry-0.0.1.alpha lib/ocp_registry/db/001_db_initialize.rb