13 lines
263 B
Ruby
13 lines
263 B
Ruby
|
class CreateSnippets < ActiveRecord::Migration
|
||
|
def change
|
||
|
create_table :snippets do |t|
|
||
|
t.string :title
|
||
|
t.text :content
|
||
|
t.integer :author_id, :null => false
|
||
|
t.integer :project_id, :null => false
|
||
|
|
||
|
t.timestamps
|
||
|
end
|
||
|
end
|
||
|
end
|