12 lines
200 B
Ruby
12 lines
200 B
Ruby
|
class CreateProjects < ActiveRecord::Migration
|
||
|
def change
|
||
|
create_table :projects do |t|
|
||
|
t.string :name
|
||
|
t.string :path
|
||
|
t.text :description
|
||
|
|
||
|
t.timestamps
|
||
|
end
|
||
|
end
|
||
|
end
|