vereto-api/db/migrate/20180216101219_create_todos.rb
2018-02-16 11:36:18 +00:00

10 lines
180 B
Ruby

class CreateTodos < ActiveRecord::Migration[5.1]
def change
create_table :todos do |t|
t.string :title
t.string :created_by
t.timestamps
end
end
end