Sha256: 5d5e72b53680814a36421601bfd08605abd047e78e01818e5a0954c424d95d43

Contents?: true

Size: 247 Bytes

Versions: 15

Compression:

Stored size: 247 Bytes

Contents

# encoding: UTF-8

Sequel.migration do
  up do
    alter_table :content do
      add_foreign_key :created_by_id, :spontaneous_users, :key => :id, :on_delete => :set_null
    end
  end

  down do
    drop_column :content, :created_by_id
  end
end

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
spontaneous-0.2.0.beta10 db/migrations/20120418153903_add_ownership_of_content.rb
spontaneous-0.2.0.beta9 db/migrations/20120418153903_add_ownership_of_content.rb
spontaneous-0.2.0.beta8 db/migrations/20120418153903_add_ownership_of_content.rb
spontaneous-0.2.0.beta7 db/migrations/20120418153903_add_ownership_of_content.rb
spontaneous-0.2.0.beta6 db/migrations/20120418153903_add_ownership_of_content.rb
spontaneous-0.2.0.beta5 db/migrations/20120418153903_add_ownership_of_content.rb
spontaneous-0.2.0.beta4 db/migrations/20120418153903_add_ownership_of_content.rb
spontaneous-0.2.0.beta3 db/migrations/20120418153903_add_ownership_of_content.rb
spontaneous-0.2.0.beta2 db/migrations/20120418153903_add_ownership_of_content.rb
spontaneous-0.2.0.beta1 db/migrations/20120418153903_add_ownership_of_content.rb
spontaneous-0.2.0.alpha7 db/migrations/20120418153903_add_ownership_of_content.rb
spontaneous-0.2.0.alpha6 db/migrations/20120418153903_add_ownership_of_content.rb
spontaneous-0.2.0.alpha5 db/migrations/20120418153903_add_ownership_of_content.rb
spontaneous-0.2.0.alpha4 db/migrations/20120418153903_add_ownership_of_content.rb
spontaneous-0.2.0.alpha3 db/migrations/20120418153903_add_ownership_of_content.rb