From ec09f45d7821096cc92f2643abd1616d58555bc1 Mon Sep 17 00:00:00 2001 From: Nicolas Bally Date: Fri, 8 Jul 2011 17:37:25 +0200 Subject: [PATCH] migration external link --- db/migrate/20110708093908_create_external_links.rb | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 db/migrate/20110708093908_create_external_links.rb diff --git a/db/migrate/20110708093908_create_external_links.rb b/db/migrate/20110708093908_create_external_links.rb new file mode 100644 index 0000000..3494400 --- /dev/null +++ b/db/migrate/20110708093908_create_external_links.rb @@ -0,0 +1,11 @@ +class CreateExternalLinks < ActiveRecord::Migration + def change + create_table :external_links do |t| + t.string :title + t.text :description + t.string :url + + t.timestamps + end + end +end