10 lines
159 B
Ruby
10 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
|