11 lines
176 B
Ruby
11 lines
176 B
Ruby
class CreateTasks < ActiveRecord::Migration[8.1]
|
|
def change
|
|
create_table :tasks do |t|
|
|
t.string :title
|
|
t.string :status
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|