Sha256: 1cdd2c664fe5381f4a7310b73c7277c9e26f90b7605a54051d7af649346e3bbc
Contents?: true
Size: 639 Bytes
Versions: 3
Compression:
Stored size: 639 Bytes
Contents
class CreateSitesTable < ActiveRecord::Migration def self.up create_table :sites do |t| t.string :name t.string :host t.string :title t.string :subtitle t.string :email t.string :timezone t.text :ping_urls t.string :akismet_key, :limit => 100 t.string :akismet_url t.boolean :approve_comments t.integer :comment_age t.string :comment_filter t.string :search_path t.string :tag_path t.string :tag_layout t.string :permalink_style t.text :permissions end end def self.down drop_table :sites end end
Version data entries
3 entries across 3 versions & 1 rubygems