Sha256: 0e52b5011a49d81e94c76acc09c3d7913800ff8c61c8afff9ab3da7ece992082

Contents?: true

Size: 361 Bytes

Versions: 5

Compression:

Stored size: 361 Bytes

Contents

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 db/migrate/20121119025608_create_spud_snippets.rb
tb_cms-1.3.5 db/migrate/20121119025608_create_spud_snippets.rb
tb_cms-1.3.3 db/migrate/20121119025608_create_spud_snippets.rb
tb_cms-1.3.2 db/migrate/20121119025608_create_spud_snippets.rb
tb_cms-1.3.1 db/migrate/20121119025608_create_spud_snippets.rb