10 lines
173 B
Ruby
10 lines
173 B
Ruby
class CreateBlogs < ActiveRecord::Migration[8.1]
|
|
def change
|
|
create_table :blogs do |t|
|
|
t.string :title
|
|
t.text :topic
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|