pastebinner/db/migrate/20191023033047_create_pastes.rb

10 lines
161 B
Ruby
Raw Permalink Normal View History

2022-01-27 03:41:43 +00:00
class CreatePastes < ActiveRecord::Migration[6.0]
def change
create_table :pastes do |t|
t.text :search_pastes
t.timestamps
end
end
end