9 lines
161 B
Ruby
9 lines
161 B
Ruby
class CreatePastes < ActiveRecord::Migration[6.0]
|
|
def change
|
|
create_table :pastes do |t|
|
|
t.text :search_pastes
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|