test/schema.rb in acts_as_indexed-0.6.3 vs test/schema.rb in acts_as_indexed-0.6.4
- old
+ new
@@ -1,7 +1,13 @@
-ActiveRecord::Schema.define :version => 0 do
- create_table :posts, :force => true do |t|
- t.column :title, :string
- t.column :body, :text
- t.column :visible, :boolean
- end
-end
+ActiveRecord::Schema.define :version => 0 do
+ create_table :posts, :force => true do |t|
+ t.column :title, :string
+ t.column :body, :text
+ t.column :visible, :boolean
+ end
+
+ create_table :sources, :force => true do |t|
+ t.column :name, :string
+ t.column :url, :string
+ t.column :description, :text
+ end
+end