Commit fb5e9d899267f6f343f7873220bc1340a50584ab
1 parent
67a7dc46
Exists in
master
and in
28 other branches
Updating database schema
Showing
1 changed file
with
3 additions
and
1 deletions
Show diff stats
db/schema.rb
... | ... | @@ -9,7 +9,7 @@ |
9 | 9 | # |
10 | 10 | # It's strongly recommended to check this file into your version control system. |
11 | 11 | |
12 | -ActiveRecord::Schema.define(:version => 20100910205427) do | |
12 | +ActiveRecord::Schema.define(:version => 20100921121528) do | |
13 | 13 | |
14 | 14 | create_table "action_tracker", :force => true do |t| |
15 | 15 | t.integer "user_id" |
... | ... | @@ -67,6 +67,7 @@ ActiveRecord::Schema.define(:version => 20100910205427) do |
67 | 67 | t.boolean "highlighted", :default => false |
68 | 68 | t.string "external_link" |
69 | 69 | t.boolean "thumbnails_processed", :default => false |
70 | + t.boolean "is_image", :default => false | |
70 | 71 | end |
71 | 72 | |
72 | 73 | create_table "articles", :force => true do |t| |
... | ... | @@ -103,6 +104,7 @@ ActiveRecord::Schema.define(:version => 20100910205427) do |
103 | 104 | t.boolean "highlighted", :default => false |
104 | 105 | t.string "external_link" |
105 | 106 | t.boolean "thumbnails_processed", :default => false |
107 | + t.boolean "is_image", :default => false | |
106 | 108 | end |
107 | 109 | |
108 | 110 | create_table "articles_categories", :id => false, :force => true do |t| | ... | ... |