given these two tables
CREATE TABLE [dbo].[ASTROLOGY_SIGN](
[SIGN_ID] [int] NOT NULL,
CONSTRAINT [PK_ASTROLOGY_SIGN] PRIMARY KEY NONCLUSTERED
CREATE TABLE [dbo].[ACTIVITY_MASTER](
[ACTIVITY_ID] [int] IDENTITY(1,1) NOT NULL,
CONSTRAINT [PK_ACTIVITY_MASTER] PRIMARY KEY NONCLUSTERED
rails generates the following two entries in schema.rb
create_table "ASTROLOGY_SIGN", :id => false, :force => true do |t|
create_table "ACTIVITY_MASTER", :primary_key => "ACTIVITY_ID", :force => true do |t|
Trying to use the schema to move from sqlserver to postgres but this is giving me issues. There are a lot of tables and would rather not have to edit by hand.