mirror of
https://github.com/ditkrg/rswag.git
synced 2026-01-24 23:06:41 +00:00
11 lines
170 B
Ruby
11 lines
170 B
Ruby
class CreateBlogs < ActiveRecord::Migration
|
|
def change
|
|
create_table :blogs do |t|
|
|
t.string :title
|
|
t.text :content
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|