Sha256: 3560385010461616d9b0493af4025f1117fd8b2f04ff78e796066531278dd81c

Contents?: true

Size: 1.18 KB

Versions: 14

Compression:

Stored size: 1.18 KB

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 :comment_translations, :force => true do |t|
    t.string     :locale
    t.references :comment
    t.string     :subject
    t.text       :content
  end

  create_table :validatees, :force => true do |t|
  end

  create_table :validatee_translations, :force => true do |t|
    t.string     :locale
    t.references :validatee
    t.string     :string
  end

  create_table :users, :force => true do |t|
    t.string :email
  end

  create_table :users_translations, :force => true do |t|
    t.references :user
    t.string     :name
  end
end

Version data entries

14 entries across 14 versions & 2 rubygems

Version Path
radiant-globalize2-extension-0.3.2 vendor/plugins/globalize2/test/data/schema.rb
radiant-globalize2-extension-0.3.1 vendor/plugins/globalize2/test/data/schema.rb
radiant-globalize2-extension-0.3.0 vendor/plugins/globalize2/test/data/schema.rb
radiant-globalize2-extension-0.2.8 vendor/plugins/globalize2/test/data/schema.rb
radiant-globalize2-extension-0.2.7 vendor/plugins/globalize2/test/data/schema.rb
radiant-globalize2-extension-0.2.6 vendor/plugins/globalize2/test/data/schema.rb
radiant-globalize2-extension-0.2.5 vendor/plugins/globalize2/test/data/schema.rb
radiant-globalize2-extension-0.2.4 vendor/plugins/globalize2/test/data/schema.rb
radiant-globalize2-extension-0.2.3 vendor/plugins/globalize2/test/data/schema.rb
radiant-globalize2-extension-0.2.2 vendor/plugins/globalize2/test/data/schema.rb
radiant-globalize2-extension-0.2.1 vendor/plugins/globalize2/test/data/schema.rb
radiant-globalize2-extension-0.2.0 vendor/plugins/globalize2/test/data/schema.rb
globalize2-0.2.1 test/data/schema.rb
globalize2-0.2.0 test/data/schema.rb