pastebinner/db/migrate/20191023033047_create_pastes.rb

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