impressionist/tests/test_app/db/migrate/20150207135825_create_profi...

11 lines
178 B
Ruby

class CreateProfiles < ActiveRecord::Migration
def change
create_table :profiles do |t|
t.string :username
t.string :slug
t.timestamps
end
end
end