8 lines
128 B
Ruby
8 lines
128 B
Ruby
class CreatePastes < ActiveRecord::Migration
|
|
def change
|
|
create_table :pastes do |t|
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|