Sha256: a496eaa398ae7258b38d792b151ffe22f8f6355792b3804d98a7418054eaa9da

Contents?: true

Size: 967 Bytes

Versions: 16

Compression:

Stored size: 967 Bytes

Contents

class CreateCmsTables < ActiveRecord::Migration
  def self.up

    create_table :adminsite_file_assets do |t|
      t.string   :attachment_file_name
      t.string   :attachment_content_type
      t.integer  :attachment_file_size
      t.datetime :attachment_updated_at
      t.timestamps
    end
    add_index :adminsite_file_assets, :attachment_file_name


    create_table :adminsite_pages do |t|
      t.string :title
      t.string :url
      t.text :body
      t.boolean :requires_login, :default => false
      t.boolean :cacheable,      :default => false
      t.integer :page_layout_id
      t.timestamps
    end
    add_index :adminsite_pages, :page_layout_id
    add_index :adminsite_pages, :url


    create_table :adminsite_page_layouts do |t|
      t.string :title
      t.text :body
      t.timestamps
    end
  end

  def self.down
    drop_table :adminsite_page_layouts
    drop_table :adminsite_pages
    drop_table :adminsite_file_assets
  end
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
adminsite-3.2.4 db/migrate/20101007000001_create_cms_tables.rb
adminsite-3.2.3 db/migrate/20101007000001_create_cms_tables.rb
adminsite-3.2.2 db/migrate/20101007000001_create_cms_tables.rb
adminsite-3.2.1 db/migrate/20101007000001_create_cms_tables.rb
adminsite-3.2.0 db/migrate/20101007000001_create_cms_tables.rb
adminsite-3.1.2 db/migrate/20101007000001_create_cms_tables.rb
adminsite-3.1.1 db/migrate/20101007000001_create_cms_tables.rb
adminsite-3.1.0 db/migrate/20101007000001_create_cms_tables.rb
adminsite-3.0.0 db/migrate/20101007000001_create_cms_tables.rb
adminsite-2.1.2 db/migrate/20101007000001_create_cms_tables.rb
adminsite-2.1.1 db/migrate/20101007000001_create_cms_tables.rb
adminsite-2.1.0 db/migrate/20101007000001_create_cms_tables.rb
adminsite-2.0.3 db/migrate/20101007000001_create_cms_tables.rb
adminsite-2.0.2 db/migrate/20101007000001_create_cms_tables.rb
adminsite-2.0.1 db/migrate/20101007000001_create_cms_tables.rb
adminsite-2.0.0 db/migrate/20101007000001_create_cms_tables.rb