]> git.openstreetmap.org Git - rails.git/blob - vendor/plugins/globalize2/test/data/schema.rb
Allow the "remember me" label to wrap when showing OpenID URL field
[rails.git] / vendor / plugins / globalize2 / test / data / schema.rb
1 ActiveRecord::Schema.define do
2   
3   create_table :blogs, :force => true do |t|
4     t.string      :description
5   end
6
7   create_table :posts, :force => true do |t|
8     t.references :blog
9   end
10
11   create_table :post_translations, :force => true do |t|
12     t.string     :locale
13     t.references :post
14     t.string     :subject
15     t.text       :content
16   end
17   
18   create_table :parents, :force => true do |t|
19   end
20
21   create_table :parent_translations, :force => true do |t|
22     t.string     :locale
23     t.references :parent
24     t.text       :content
25     t.string     :type
26   end
27   
28   create_table :comments, :force => true do |t|
29     t.references :post
30   end
31
32   create_table :translated_comment_translations, :force => true do |t|
33     t.string     :locale
34     t.references :comment
35     t.string     :subject
36     t.text       :content
37   end
38   
39 end