Skip to content

Commit

Permalink
add haml and css for themes
Browse files Browse the repository at this point in the history
  • Loading branch information
tobowers committed Dec 30, 2008
1 parent 4686a49 commit 37c7b03
Show file tree
Hide file tree
Showing 27 changed files with 3,818 additions and 0 deletions.
2 changes: 2 additions & 0 deletions app/models/paste.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
class Paste < ActiveRecord::Base
end
12 changes: 12 additions & 0 deletions db/migrate/20081230170838_create_pastes.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
class CreatePastes < ActiveRecord::Migration
def self.up
create_table :pastes do |t|

t.timestamps
end
end

def self.down
drop_table :pastes
end
end
Loading

0 comments on commit 37c7b03

Please sign in to comment.