Sha256: b9e9fb6b7dee03fbee795d57f2ef11ba98b299c20cd3c9b85d69c6358eb1b280

Contents?: true

Size: 419 Bytes

Versions: 12

Compression:

Stored size: 419 Bytes

Contents

# This migration comes from tb_cms (originally 20121119025608)
class CreateSpudSnippets < ActiveRecord::Migration
  def change
    create_table :spud_snippets do |t|
      t.string :name
      t.text :content
      t.string :format
      t.text :content_processed
      t.integer :site_id, :default => 0
      t.timestamps
    end

    add_index :spud_snippets, :site_id
    add_index :spud_snippets, :name
  end


end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
tb_cms-1.2.3 spec/dummy/db/migrate/20141231214479_create_spud_snippets.tb_cms.rb
tb_cms-1.2.2 spec/dummy/db/migrate/20141231214479_create_spud_snippets.tb_cms.rb
tb_cms-1.2.1 spec/dummy/db/migrate/20141231214479_create_spud_snippets.tb_cms.rb
tb_cms-1.2.0 spec/dummy/db/migrate/20141231214479_create_spud_snippets.tb_cms.rb
tb_cms-1.2.0.beta3 spec/dummy/db/migrate/20141231214479_create_spud_snippets.tb_cms.rb
tb_cms-1.2.0.beta1 spec/dummy/db/migrate/20140110051482_create_spud_snippets.tb_cms.rb
tb_cms-1.1.5 spec/dummy/db/migrate/20140110051482_create_spud_snippets.tb_cms.rb
tb_cms-1.1.4 spec/dummy/db/migrate/20140110051482_create_spud_snippets.tb_cms.rb
tb_cms-1.1.3 spec/dummy/db/migrate/20140110051482_create_spud_snippets.tb_cms.rb
tb_cms-1.1.2 spec/dummy/db/migrate/20140110051482_create_spud_snippets.tb_cms.rb
tb_cms-1.1.1 spec/dummy/db/migrate/20140110051482_create_spud_snippets.tb_cms.rb
tb_cms-1.1.0 spec/dummy/db/migrate/20140110051482_create_spud_snippets.tb_cms.rb