test/fixtures/schema.rb in auto_html-1.5.1.1 vs test/fixtures/schema.rb in auto_html-1.5.2
- old
+ new
@@ -1,6 +1,6 @@
-ActiveRecord::Schema.define do
+ActiveRecord::Schema.define(:version => Time.now.to_i) do
create_table "articles", :force => true do |t|
t.column "title", :string
t.column "body", :text
t.column "body_html", :text
t.column "created_at", :datetime
@@ -8,7 +8,13 @@
end
create_table "users", :force => true do |t|
t.column "name", :string
t.column "bio", :text
+ end
+
+ create_table "posts", :force => true do |t|
+ t.column "topic_id", :integer
+ t.column "user_id", :integer
+ t.column "content", :text
end
end