Sha256: 2a8887b48aa8597fbe5d5f1592f14acba1e83b8811e9739ed75c5d1db2843628

Contents?: true

Size: 843 Bytes

Versions: 11

Compression:

Stored size: 843 Bytes

Contents

ActiveRecord::Schema.define do
  
  create_table :blogs, :force => true do |t|
    t.string      :description
  end

  create_table :posts, :force => true do |t|
    t.references :blog
  end

  create_table :post_translations, :force => true do |t|
    t.string     :locale
    t.references :post
    t.string     :subject
    t.text       :content
  end
  
  create_table :parents, :force => true do |t|
  end

  create_table :parent_translations, :force => true do |t|
    t.string     :locale
    t.references :parent
    t.text       :content
    t.string     :type
  end
  
  create_table :comments, :force => true do |t|
    t.references :post
  end

  create_table :translated_comment_translations, :force => true do |t|
    t.string     :locale
    t.references :comment
    t.string     :subject
    t.text       :content
  end
  
end

Version data entries

11 entries across 11 versions & 4 rubygems

Version Path
kriss-gettext_i18n-0.2.0 vendor/globalize2/test/data/schema.rb
kriss-gettext_i18n-0.2.1 vendor/globalize2/test/data/schema.rb
kriss-gettext_i18n-0.2.2 vendor/globalize2/test/data/schema.rb
kriss-gettext_i18n-0.2.3 vendor/globalize2/test/data/schema.rb
simonmenke-globalize2-0.0.1 test/data/schema.rb
simonmenke-globalize2-0.0.4 test/data/schema.rb
simonmenke-globalize2-0.0.5 test/data/schema.rb
simonmenke-globalize2-0.0.6 test/data/schema.rb
simonmenke-simonmenke-globalize2-0.0.2 test/data/schema.rb
simonmenke-globalize2-0.0.7 test/data/schema.rb
globalize2-0.1.0 test/data/schema.rb