11 lines
178 B
Ruby
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
|