aboutsummaryrefslogtreecommitdiffstats
path: root/db
diff options
context:
space:
mode:
authorPhilip Arndt <parndt@gmail.com>2011-03-04 11:54:12 +1300
committerPhilip Arndt <parndt@gmail.com>2011-03-04 11:54:12 +1300
commit234a7d74d57084a78e51cc52861a81f7d0748a6d (patch)
tree6552dfac3f45057f4f617573df26f2af0687e71e /db
parent1e6190b58c66fda23b6666e46f2a65198841a06f (diff)
downloadrefinerycms-blog-234a7d74d57084a78e51cc52861a81f7d0748a6d.tar.gz
refinerycms-blog-234a7d74d57084a78e51cc52861a81f7d0748a6d.tar.bz2
refinerycms-blog-234a7d74d57084a78e51cc52861a81f7d0748a6d.zip
Moved most of the code toward EngineInstaller.
Diffstat (limited to 'db')
-rw-r--r--db/migrate/migration_number_add_user_id_to_blog_posts.rb11
-rw-r--r--db/migrate/migration_number_create_singular_name.rb26
-rw-r--r--db/seeds/seed.rb16
3 files changed, 53 insertions, 0 deletions
diff --git a/db/migrate/migration_number_add_user_id_to_blog_posts.rb b/db/migrate/migration_number_add_user_id_to_blog_posts.rb
new file mode 100644
index 0000000..cd62524
--- /dev/null
+++ b/db/migrate/migration_number_add_user_id_to_blog_posts.rb
@@ -0,0 +1,11 @@
+class AddUserIdToBlogPosts < ActiveRecord::Migration
+
+ def self.up
+ add_column :blog_posts, :user_id, :integer
+ end
+
+ def self.down
+ remove_column :blog_posts, :user_id
+ end
+
+end \ No newline at end of file
diff --git a/db/migrate/migration_number_create_singular_name.rb b/db/migrate/migration_number_create_singular_name.rb
new file mode 100644
index 0000000..badb213
--- /dev/null
+++ b/db/migrate/migration_number_create_singular_name.rb
@@ -0,0 +1,26 @@
+class Create<%= singular_name.camelize %> < ActiveRecord::Migration
+
+ def self.up<% @refinerycms_blog_tables.each do |table| %>
+ create_table :<%= table[:table_name] %>, :id => <%= table[:id].to_s %> do |t|
+<% table[:attributes].each do |attribute| -%>
+ t.<%= attribute.type %> :<%= attribute.name %>
+<% end -%>
+ <%= 't.timestamps' if table[:id] %>
+ end
+
+ <%= "add_index :#{table[:table_name]}, :id" if table[:id] %>
+<% end -%>
+ load(Rails.root.join('db', 'seeds', 'refinerycms_blog.rb').to_s)
+ end
+
+ def self.down
+ UserPlugin.destroy_all({:name => "refinerycms_blog"})
+
+ Page.delete_all({:link_url => "/blog"})
+
+<% @refinerycms_blog_tables.each do |table| -%>
+ drop_table :<%= table[:table_name] %>
+<% end -%>
+ end
+
+end
diff --git a/db/seeds/seed.rb b/db/seeds/seed.rb
new file mode 100644
index 0000000..f958fab
--- /dev/null
+++ b/db/seeds/seed.rb
@@ -0,0 +1,16 @@
+User.find(:all).each do |user|
+ user.plugins.create(:name => "refinerycms_blog",
+ :position => (user.plugins.maximum(:position) || -1) +1)
+end
+
+page = Page.create(
+ :title => "Blog",
+ :link_url => "/blog",
+ :deletable => false,
+ :position => ((Page.maximum(:position, :conditions => {:parent_id => nil}) || -1)+1),
+ :menu_match => "^/blogs?(\/|\/.+?|)$"
+)
+
+Page.default_parts.each do |default_page_part|
+ page.parts.create(:title => default_page_part, :body => nil)
+end