Sha256: 0f2286b2df36f82762153648bd21793abd9000c829b25d665dca7153833e1c4d

Contents?: true

Size: 420 Bytes

Versions: 5

Compression:

Stored size: 420 Bytes

Contents

# This migration comes from tb_cms (originally 20121119025608)
class CreateSpudSnippets < ActiveRecord::Migration[4.2]
  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

5 entries across 5 versions & 1 rubygems

Version Path
tb_cms-1.3.6 spec/dummy/db/migrate/20141231214479_create_spud_snippets.tb_cms.rb
tb_cms-1.3.5 spec/dummy/db/migrate/20141231214479_create_spud_snippets.tb_cms.rb
tb_cms-1.3.3 spec/dummy/db/migrate/20141231214479_create_spud_snippets.tb_cms.rb
tb_cms-1.3.2 spec/dummy/db/migrate/20141231214479_create_spud_snippets.tb_cms.rb
tb_cms-1.3.1 spec/dummy/db/migrate/20141231214479_create_spud_snippets.tb_cms.rb