Remove extra empty lines in schema migration

This commit is contained in:
Thibault Jouan 2014-04-01 20:15:54 +00:00
parent 53d9956961
commit 1b5055d0a6

View File

@ -1,6 +1,5 @@
class InitialSchema < ActiveRecord::Migration
def up
create_table :playlists do |t|
t.integer :user_id
t.string :name
@ -32,7 +31,6 @@ class InitialSchema < ActiveRecord::Migration
end
add_index :users, :email, unique: true
end
def down