From 82f16e71d49350c1ad4aa48773db5d0f45a55c6c Mon Sep 17 00:00:00 2001 From: hukl Date: Mon, 2 Mar 2009 20:29:25 +0100 Subject: introducing page templates - need to add edit capabilities renamed the custom template folder forgot one fix for the new custom template path page templates refined renamed page attribute template to template_name as i suspected it to be a reserved word. it still didn't work until i discovered that simon defined the accessible attributes! That costed me 40 minutes of lifetime. But he apologized ;) tests for public and custom page templates --- db/migrate/20090302184350_add_template_column_to_pages.rb | 9 +++++++++ db/migrate/20090302215335_rename_template_to_template_name.rb | 9 +++++++++ 2 files changed, 18 insertions(+) create mode 100644 db/migrate/20090302184350_add_template_column_to_pages.rb create mode 100644 db/migrate/20090302215335_rename_template_to_template_name.rb (limited to 'db') diff --git a/db/migrate/20090302184350_add_template_column_to_pages.rb b/db/migrate/20090302184350_add_template_column_to_pages.rb new file mode 100644 index 0000000..e3aac66 --- /dev/null +++ b/db/migrate/20090302184350_add_template_column_to_pages.rb @@ -0,0 +1,9 @@ +class AddTemplateColumnToPages < ActiveRecord::Migration + def self.up + add_column :pages, :template, :string + end + + def self.down + remove_column :pages, :template + end +end diff --git a/db/migrate/20090302215335_rename_template_to_template_name.rb b/db/migrate/20090302215335_rename_template_to_template_name.rb new file mode 100644 index 0000000..288209e --- /dev/null +++ b/db/migrate/20090302215335_rename_template_to_template_name.rb @@ -0,0 +1,9 @@ +class RenameTemplateToTemplateName < ActiveRecord::Migration + def self.up + rename_column :pages, :template, :template_name + end + + def self.down + rename_column :pages, :template_name, :template + end +end -- cgit v1.3