Sha256: f6a6ad686d51b60f1bd5387be9c94675624901da0e7ef711d5ca74589a383335

Contents?: true

Size: 382 Bytes

Versions: 26

Compression:

Stored size: 382 Bytes

Contents

class CreateCustomTemplates < ActiveRecord::Migration
  def self.up
    create_table :custom_templates do |t|

      t.timestamps
      t.string :name, :null => false
      t.string :template_type, :null => false
      t.text :content, :null => false
    end

    add_index :custom_templates, :name, :unique => true
  end

  def self.down
    drop_table :custom_templates
  end
end

Version data entries

26 entries across 26 versions & 1 rubygems

Version Path
talia_core-0.7.0 generators/talia_base/templates/migrations/create_custom_templates.rb
talia_core-0.5.4 generators/talia_base/templates/migrations/create_custom_templates.rb
talia_core-0.5.3 generators/talia_base/templates/migrations/create_custom_templates.rb
talia_core-0.5.2 generators/talia_base/templates/migrations/create_custom_templates.rb
talia_core-0.5.1 generators/talia_base/templates/migrations/create_custom_templates.rb
talia_core-0.5.0 generators/talia_base/templates/migrations/create_custom_templates.rb
talia_core-0.4.22 generators/talia_base/templates/migrations/create_custom_templates.rb
talia_core-0.4.20 generators/talia_base/templates/migrations/create_custom_templates.rb
talia_core-0.4.19 generators/talia_base/templates/migrations/create_custom_templates.rb
talia_core-0.4.18 generators/talia_base/templates/migrations/create_custom_templates.rb
talia_core-0.4.17 generators/talia_base/templates/migrations/create_custom_templates.rb
talia_core-0.4.16 generators/talia_base/templates/migrations/create_custom_templates.rb
talia_core-0.4.15 generators/talia_base/templates/migrations/create_custom_templates.rb
talia_core-0.4.14 generators/talia_base/templates/migrations/create_custom_templates.rb
talia_core-0.4.13 generators/talia_base/templates/migrations/create_custom_templates.rb
talia_core-0.4.12 generators/talia_base/templates/migrations/create_custom_templates.rb
talia_core-0.4.11 generators/talia_base/templates/migrations/create_custom_templates.rb
talia_core-0.4.10 generators/talia_base/templates/migrations/create_custom_templates.rb
talia_core-0.4.9 generators/talia_base/templates/migrations/create_custom_templates.rb
talia_core-0.4.8 generators/talia_base/templates/migrations/create_custom_templates.rb