mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
11 lines
227 B
Ruby
11 lines
227 B
Ruby
class CreateDocuments < ActiveRecord::Migration[4.2]
|
|
def change
|
|
create_table :documents do |t|
|
|
t.references :user, index: true, foreign_key: true
|
|
t.text :body
|
|
|
|
t.timestamps null: false
|
|
end
|
|
end
|
|
end
|