9 lines
158 B
Ruby
9 lines
158 B
Ruby
class CreateMiniposts < ActiveRecord::Migration[8.1]
|
|
def change
|
|
create_table :miniposts do |t|
|
|
t.text :body
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|