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