9 lines
159 B
Ruby
9 lines
159 B
Ruby
class CreateMiniblogs < ActiveRecord::Migration[8.1]
|
|
def change
|
|
create_table :miniblogs do |t|
|
|
t.text :about
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|