Project

General

Profile

Download (306 Bytes) Statistics
| Branch: | Tag: | Revision:
class CreateConfigTemplates < ActiveRecord::Migration
def self.up
create_table :config_templates do |t|
t.string :name
t.text :template
t.boolean :snippet
t.references :template_kind
t.timestamps
end
end

def self.down
drop_table :config_templates
end
end
(55-55/83)