spec/db/schema.rb in nilify_blanks-1.2.1 vs spec/db/schema.rb in nilify_blanks-1.3.0

- old
+ new

@@ -1,12 +1,15 @@ ActiveRecord::Schema.define(:version => 0) do - + create_table :posts, :force => true do |t| t.string :first_name t.string :last_name, :null => false t.string :title t.text :summary t.text :body + t.column :slug, :citext t.integer :views + t.integer :category_id + t.string :blog_id end - -end \ No newline at end of file + +end